aboutsummaryrefslogtreecommitdiffstats
path: root/packet-lapd.c
AgeCommit message (Collapse)AuthorFilesLines
2000-02-15Create a header file for every packet-*.c file. Prune the packet.h file.Gilbert Ramirez1-1/+2
This change allows you to add a new packet-*.c file and not cause a recompilation of everything that #include's packet.h Add the plugin_api.[ch] files ot the plugins/Makefile.am packaging list. Add #define YY_NO_UNPUT 1 to the lex source so that the yyunput symbol is not defined, squelching a compiler complaint when compiling the generated C file. svn path=/trunk/; revision=1637
2000-01-24xDLC frames other than I and UI frames may have a payload, e.g. TESTGuy Harris1-3/+4
frames; rename "XDLC_HAS_PAYLOAD()" to "XDLC_IS_INFORMATION()", and if the frame isn't an "information" frame, dissect its payload (if any) as data. svn path=/trunk/; revision=1528
1999-11-16Replace the ETT_ "enum" members, declared in "packet.h", withGuy Harris1-12/+23
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-11Add #defines for bits in the LAPD address field and for the LAPD SAPIGuy Harris1-16/+48
values. Dissect the LAPD payload, if present. Add the beginnings of a Q.931 dissector. svn path=/trunk/; revision=1007
1999-11-11Add LAPD support.Gilbert Ramirez1-0/+154
svn path=/trunk/; revision=1004