aboutsummaryrefslogtreecommitdiffstats
path: root/packet-sap.c
Commit message (Collapse)AuthorAgeFilesLines
* Add tvbuff class.Gilbert Ramirez2000-05-111-23/+23
| | | | | | | | | | | | | | | 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
* Move calls to "dissector_add()" out of the register routines for TCP andGuy Harris2000-04-081-2/+11
| | | | | | | | | | | | | | UDP and into the handoff registration routines for the protocols in question. Make the dissectors for those protocols static if they're not called outside the dissector's source file. Get rid of header files if all they did was declare dissectors that are now static; remove declarations of now-static dissectors from header files that do more than just declare the dissector. svn path=/trunk/; revision=1823
* Create a header file for every packet-*.c file. Prune the packet.h file.Gilbert Ramirez2000-02-151-2/+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
* Fix Gerald's e-mail address.Guy Harris2000-01-071-2/+2
| | | | svn path=/trunk/; revision=1437
* Added Heikki Vatiainen's patch to "quiet down" the SAP info column.Gilbert Ramirez1999-11-221-4/+3
| | | | svn path=/trunk/; revision=1095
* Print unsigned quantities with "%u", not "%d".Guy Harris1999-11-171-9/+9
| | | | | | Use "plurality()" to pluralize byte counts. svn path=/trunk/; revision=1047
* Heikki Vatiainen's SAP (Session Announcement Protocol) dissector.Guy Harris1999-11-171-0/+319
Rename the dissector for the Netware SAP protocol to "dissect_ipxsap()", so as to keep its name from colliding with that of the dissector for the Session Announcement Protocol. svn path=/trunk/; revision=1046