aboutsummaryrefslogtreecommitdiffstats
path: root/packet-per.h
AgeCommit message (Collapse)AuthorFilesLines
2004-05-17rename the NOT_DECODED_YET macros to avoid a name clashRonnie Sahlberg1-2/+2
for those sources that include both packet-ber.h and packet-per.h svn path=/trunk/; revision=10912
2004-04-09Make it more obvious when ethereal fails to dissect a PER contructRonnie Sahlberg1-3/+7
1, put a hint why it failed in the COL_INFO line 2, abort dissecting any further (by reading from the arbitrary position 9999 in the tvb 3, put "something unknown here [xxx]" as the last entry in the tree. svn path=/trunk/; revision=10569
2004-03-04From Tomas Kukosa: add packet-ber.c routines to the plugin API.Guy Harris1-1/+6
svn path=/trunk/; revision=10295
2004-02-16From Tomas Kukosa, add a PER helper to dissect BITSTRINGSRonnie Sahlberg1-3/+3
svn path=/trunk/; revision=10071
2003-10-09Prefix the EXTENSION #defines with ASN1_ as well.Guy Harris1-4/+4
svn path=/trunk/; revision=8653
2003-10-09Prefix OPTIONAL and NOT_OPTIONAL with ASN1_, to avoid collisions withGuy Harris1-3/+3
other definitions of OPTIONAL (such as the one in Windows). svn path=/trunk/; revision=8650
2003-08-23_U_ is for definitions, not declarations; putting it there caused aGuy Harris1-2/+2
compiler problem when rebuilding the X* files for the plugin API. svn path=/trunk/; revision=8217
2003-08-23From Tomas Kukosa: export the PER dissection routines, and someGuy Harris1-20/+20
H.225/H.245 routines, to plugins on platforms where they have to go through the function call table. svn path=/trunk/; revision=8216
2003-08-21From Tomas Kukosa: allow subdissectors to be registered forGuy Harris1-3/+3
NonStandardParameter data in the H.245 dissector. svn path=/trunk/; revision=8206
2003-07-31Updates to OCTET STRING so that it can handle FT_STRING and not just FT_BYTESRonnie Sahlberg1-1/+3
Added decoding of unicode strings in BMPString dissector helper svn path=/trunk/; revision=8111
2003-07-19Add PrintableString stub. H225 needs this type.Ronnie Sahlberg1-1/+3
I could not find a definition of which order the characters in the restricted set are encoded in so I could not implement the actual decoding. svn path=/trunk/; revision=8049
2003-07-16Add a new parameter to the constrained integer dissector so that it also handlesRonnie Sahlberg1-2/+2
constrained integers with an extension marker. Update all calls to the constrained integer dissector Add dissection to the rfc_number type which is a constrasined integer with an extension marker Add H245 so that it builds by default in ethereal. It has been tested extensively by a semi-large number of people with a lot of real and synthetic captures and seems to work very well. New protocol added to ethereal svn path=/trunk/; revision=8032
2003-07-16updates bugfix for the NumericString alphabet.Ronnie Sahlberg1-1/+3
Implement some restricted ia5strings svn path=/trunk/; revision=8029
2003-07-13Add decoding of NumericStringRonnie Sahlberg1-1/+3
svn path=/trunk/; revision=8018
2003-07-12 Break out the PER functions from the alternative h245 dissectorRonnie Sahlberg1-0/+86
and put them in their own file. I had to put them im packet-per.c instead of asn1-per.c since othervise i couldnt get it to invoke the register routine from register.c the per dissector is compiled into ethereal by default, but there are no callers in ethereal until the h245 dissector is added. someone that knows the registry stuff better might consider renaming it to asn1-per.c instead of packet-per.c svn path=/trunk/; revision=8017