summaryrefslogtreecommitdiff
path: root/gmpls.c
Commit message (Collapse)AuthorAgeFilesLines
* Always include <config.h> rather than "config.h".Guy Harris2018-01-211-1/+1
| | | | | | | | This can prevent bizarre failures if, for example, you've done a configuration in the top-level source directory, leaving behind one config.h file, and then do an out-of-tree build in another directory, with different configuration options. This way, we always pick up the same config.h, in the build directory.
* Use quoted include netdissect-stdinc.h instead of angle-bracketed oneFrancois-Xavier Le Bail2018-01-211-1/+1
|
* zero change: update Hannes Gredler's emailHannes Gredler2017-07-281-1/+1
|
* libnetdissect code must include 'netdissect.h', not 'interface.h'Francois-Xavier Le Bail2015-09-111-1/+1
| | | | | | | Moreover: Remove netdissect.h include in interface.h Move thiszone declaration in netdissect.h Update a comment
* Rename 'tcpdump-stdinc.h' to 'netdissect-stdinc.h'Francois-Xavier Le Bail2015-09-101-1/+1
| | | | Get the full log via: git log --follow netdissect-stdinc.h
* dismiss NETDISSECT_REWORKED macroDenis Ovsienko2015-03-221-1/+0
| | | | | | | The purpose of this macro was to enable the file-by-file switch to NDO, after which only tcpdump.c had a use of it and the definitions guarded by it. Update tcpdump.c not to require them any more and dismiss the unused definitions.
* Define NETDISSECT_REWORKED in a bunch of files, and fix the issues it finds.Guy Harris2014-04-041-0/+1
| | | | | The only one it found was that routines in sigsecret.c needed to refer to ndo->ndo_sigsecret, not just sigsecret.
* remove tcpdump's own CVS keywordsDenis Ovsienko2014-01-031-5/+0
| | | | | | Remove lots of $Header's and a few $Id's that all belong to the former CVS repository of tcpdump itself. These keywords have been frozen since the migration to git in late 2008.
* whitespace changesMichael Richardson2014-01-011-10/+10
|
* gmpls.h/c: mark several structs as constKovarththanan Rajaratnam2010-02-201-9/+9
|
* add support for link attribute subTLV, update GMPLS printer to latest spec ↵hannes2006-04-141-9/+17
| | | | (rfc4205)
* From Manu Pathak: add support for LMP Service Discovery extensionsguy2005-05-191-1/+45
| | | | (defined in the UNI 1.0 spec).
* bugfix: changed format for diffserv-TE subTLVs, add tok2str() for decoding ↵hannes2004-09-151-1/+12
| | | | BC models
* Have the configure script arrange that the Makefile define _U_guy2003-11-161-4/+4
| | | | | | | | | | appropriately, and that GNUmakefile and the MSVC++ project file define it apppriately, as we do with libpcap, rather than defining it in "interface.h". Undo the rcsid-shuffling and addition of extra #includes, as we no longer need to arrange that "interface.h" be included before using _U_ in an RCS ID or copyright.
* From Neil Spring:guy2003-11-151-4/+4
| | | | | | | | | | | use "_U_" in the definitions of "rcsid[]", to eliminate complaints about those variables being unused; move the definitions after the include of "interface.h", or add an include of "interface.h", so that "_U_" is defined. Include "config.h" before including "tcpdump-stdinc.h" in "missing/datalinks.c".
* add GMPLS payload ID codepoints mentioned in draft-ietf-ccamp-gmpls-g709-04.txthannes2003-10-201-2/+19
|
* Move the definitions of the various GMPLS "struct tok"s out of gmpls.hguy2003-06-091-0/+117
into a new gmpls.c file; have gmpls.h contain only external declarations of those structures. That removes compiler warnings about static structures being defined but not used, and also lets more than one file share structures used in both of those files, rather than having private definitions of them.