aboutsummaryrefslogtreecommitdiffstats
path: root/packet-per.c
AgeCommit message (Collapse)AuthorFilesLines
2003-07-31Updates to OCTET STRING so that it can handle FT_STRING and not just FT_BYTESRonnie Sahlberg1-5/+66
Added decoding of unicode strings in BMPString dissector helper svn path=/trunk/; revision=8111
2003-07-29fix minor bugs in h245 decodingRonnie Sahlberg1-2/+3
svn path=/trunk/; revision=8092
2003-07-29Update PER so that the bit that indicates whether an extension is encoded or notRonnie Sahlberg1-2/+2
is displayed in the tree for CHOICE constructs when internal PER fields are displayed. svn path=/trunk/; revision=8091
2003-07-29update to PER to decode PrintableString properlyRonnie Sahlberg1-5/+2
svn path=/trunk/; revision=8089
2003-07-19Add PrintableString stub. H225 needs this type.Ronnie Sahlberg1-1/+10
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-16Eliminate some signed-vs-unsigned-comparison and signed-char-subscriptGuy Harris1-6/+7
warnings. svn path=/trunk/; revision=8034
2003-07-16Add a new parameter to the constrained integer dissector so that it also handlesRonnie Sahlberg1-7/+25
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-3/+3
Implement some restricted ia5strings svn path=/trunk/; revision=8029
2003-07-13Add decoding of NumericStringRonnie Sahlberg1-2/+113
svn path=/trunk/; revision=8018
2003-07-12 Break out the PER functions from the alternative h245 dissectorRonnie Sahlberg1-0/+1220
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