aboutsummaryrefslogtreecommitdiffstats
path: root/nlpid.h
Commit message (Collapse)AuthorAgeFilesLines
* An NLPID of 0xb0 is defined by ISO/IEC TR 9577 to be "Data compressionGuy Harris2001-03-291-3/+2
| | | | | | protocol"; give it a more generic name than NLPID_WCP. svn path=/trunk/; revision=3204
* Pull the NLPID for Wellfleet compression into "nlpid.h".Guy Harris2001-03-231-16/+18
| | | | svn path=/trunk/; revision=3173
* Miscellaneous code cleaningLaurent Deniel2000-08-111-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add <stdarg.h> or <varargs.h> in snprintf.h and remove those inclusions in the other #ifdef NEED_SNPRINTF_H codes - remove the check of multiple inclusions in source (.c) code (there is a bit loss of _cpp_ performance, but I prefer the gain of code reading and maintenance; and nowadays, disk caches and VM are correctly optimized ;-). - protect all (well almost) header files against multiple inclusions - add header (i.e. GPL license) in some include files - reorganize a bit the way header files are included: First: #include <system_include_files> #include <external_package_include_files (e.g. gtk, glib etc.)> Then #include "ethereal_include_files" with the correct HAVE_XXX or NEED_XXX protections. - add some HAVE_XXX checks before including some system header files - add the same HAVE_XXX in wiretap as in ethereal Please forgive me, if I break something (I've only compiled and regression tested on Linux). svn path=/trunk/; revision=2254
* Ralf Schneider's changes to enhance to OSI CLNP, CLTP, and ISIS supportGuy Harris2000-04-151-2/+2
| | | | | | and to add OSI ESIS support. svn path=/trunk/; revision=1865
* Add a bunch of additional NLPIDs from ISO 9577.Guy Harris2000-01-301-7/+13
| | | | svn path=/trunk/; revision=1583
* Add the NLPID value for PPP.Guy Harris2000-01-131-2/+5
| | | | | | | 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
* Export the list of OSI NLPIDs in "nlpid.h", for use by the CDPGuy Harris2000-01-131-0/+38
dissector. Add a "value_string" table for NLPIDs to the OSI dissector, and export it for use by the CDP dissector. Fix the CDP dissector as per the documentation in http://www.cisco.com/univercd/cc/td/doc/product/lan/trsrb/frames.htm and as per some traces we have with CDP data in them. svn path=/trunk/; revision=1455