1 | initial version |
There is this code in packet-ber.c
/* allow the dissection of BER/DER carried over a TCP transport
by using "Decode As..." */
dissector_add_for_decode_as_with_preference("tcp.port", ber_handle);
You cound try it out by hand crafting a TCP packet with your BER as payload. If it works we could easily add UDP. The prefered metod of decoding asn1 coded protocol is to use the asn1 decription(s) and auto generate a dissector using the asn2wrs script.