aboutsummaryrefslogtreecommitdiffstats
path: root/packet-lmp.c
AgeCommit message (Collapse)AuthorFilesLines
2002-04-29Removal (or, at least, #ifdeffing out) of unused variables andGuy Harris1-5/+2
functions, from David Frascone. svn path=/trunk/; revision=5288
2002-04-25Use "%.10g", rather than "%f", for floating-point numbers. That willGuy Harris1-5/+5
display values that would fit in a 32-bit integer as integers, leaving out all trailing zeroes after the decimal point (and leaving out the decimal point if there are no digits left after the decimal point once trailing zeroes are removed), and will use scientific notation for small fractions or large numbers. svn path=/trunk/; revision=5248
2002-04-24Use "tvb_get_ntohieee_float()" to fetch floating-point numbers.Guy Harris1-10/+9
Display those numbers as floating-point. svn path=/trunk/; revision=5241
2002-04-14From Joerg Mayer:Guy Harris1-7/+2
Declares some variables static. Creates a new include file packet-rsvp.h, and make use of it (change some extern decls to #inlcude). Move the file packet-pgm.h into packet-pgm.c as it is not used by anything outside packet-pgm.c. svn path=/trunk/; revision=5162
2002-04-10Added support for the Link Management Protocol (LMP), used for opticalAshok Narayanan1-0/+1458
signalling and Generalized MPLS. This commit contains code for the protocol version described in draft-ietf-ccamp-lmp-03.txt. svn path=/trunk/; revision=5138