aboutsummaryrefslogtreecommitdiffstats
path: root/packet-q931.c
AgeCommit message (Collapse)AuthorFilesLines
2000-05-11Add tvbuff class.Gilbert Ramirez1-132/+132
Add exceptions routines. Convert proto_tree_add_*() routines to require tvbuff_t* argument. Convert all dissectors to pass NULL argument ("NullTVB" macro == NULL) as the tvbuff_t* argument to proto_tree_add_*() routines. dissect_packet() creates a tvbuff_t, wraps the next dissect call in a TRY block, will print "Short Frame" on the proto_tree if a BoundsError exception is caught. The FDDI dissector is converted to use tvbuff's. svn path=/trunk/; revision=1939
2000-01-13Add the NLPID value for PPP.Guy Harris1-8/+3
In Q.931 and Q.2931, the TR 9577 values are NLPIDs, so use "nlpid_vals" to dissect them, and values from "nlpid.h" to refer to them. svn path=/trunk/; revision=1461
1999-12-14Patches from Bert Driehuis to:Guy Harris1-3/+3
1) fix the check for the IE identifier to check all bits, including the topmost bit; 2) print all fields in the Date IE as 2 digits. svn path=/trunk/; revision=1335
1999-11-25Minor bug fix.Guy Harris1-2/+2
svn path=/trunk/; revision=1109
1999-11-25Small bug fix.Guy Harris1-1/+3
svn path=/trunk/; revision=1105
1999-11-25Fixes to Q.931 dissector, and additions from a recent copy of Q.931.Guy Harris1-63/+174
Export some functions from the Q.931 dissector, so the Q.2931 dissector can use them. Add a pile of information element dissection to the Q.2931 dissector. svn path=/trunk/; revision=1104
1999-11-19There are no protocols under Q.931, so mark everything up to the end ofGuy Harris1-2/+3
the frame as being Q.931 stuff. svn path=/trunk/; revision=1067
1999-11-19Fix a typo.Guy Harris1-3/+3
svn path=/trunk/; revision=1066
1999-11-16Replace the ETT_ "enum" members, declared in "packet.h", withGuy Harris1-8/+16
dynamically-assigned "ett_" integer values, assigned by "proto_register_subtree_array()"; this: obviates the need to update "packet.h" whenever you add a new subtree type - you only have to add a call to "proto_register_subtree_array()" to a "register" routine and an array of pointers to "ett_", if they're not already there, and add a pointer to the new "ett_" variable to the array, if they are there; would allow run-time-loaded dissectors to allocate subtree types when they're loaded. svn path=/trunk/; revision=1043
1999-11-13Dissect a whole pile of Q.931 information elements.Guy Harris1-137/+1850
svn path=/trunk/; revision=1023
1999-11-13A few cause codes more (cue Ennio Morricone).Guy Harris1-2/+6
svn path=/trunk/; revision=1021
1999-11-13Add initial support for decoding information elements.Guy Harris1-1/+355
svn path=/trunk/; revision=1020
1999-11-11Support all lengths of call reference value (1 to 15 octets).Guy Harris1-27/+10
svn path=/trunk/; revision=1009
1999-11-11Add #defines for bits in the LAPD address field and for the LAPD SAPIGuy Harris1-0/+207
values. Dissect the LAPD payload, if present. Add the beginnings of a Q.931 dissector. svn path=/trunk/; revision=1007