summaryrefslogtreecommitdiff
path: root/ipproto.c
AgeCommit message (Collapse)AuthorFilesLines
1999-12-06Remove #include "globals.h" from packet-atalk.c (not needed) and fromGilbert Ramirez1-1/+6
packet-ipv6.h. Of all the files that include packet-ipv6.h, only ipproto.c needs "globals.h", so I put the #include in ipproto.c svn path=/trunk/; revision=1229
1999-11-21Added Heikki Vatiainen's <hessu@cs.tut.fi> VRRP dissector.Gilbert Ramirez1-1/+2
svn path=/trunk/; revision=1083
1999-10-22If one wants to look up a value in a "value_string" table, and get backGuy Harris1-2/+2
either the corresponding string on success or NULL on failure, one should use "match_strval()", rather than using "val_to_str()" with a null format - "val_to_str()" uses the format if the lookup fails, so it won't work correctly (e.g., it may drop core) if the format string is NULL. svn path=/trunk/; revision=910
1999-10-15IPComp (RFC2393) decoding.Jun-ichiro itojun Hagino1-1/+2
svn path=/trunk/; revision=838
1999-10-14implement ipprotostr() in ipproto.c, which basically does ipprotobynumber()Jun-ichiro itojun Hagino1-0/+118
for ip.ip_p and ip6.ip6_nxt (and other IPv6 header chain). use val_to_str() as much as possible in dissect_{ipv6,pim,ripng}(). make --disable-zlib a default for netbsd (temporary workaround). svn path=/trunk/; revision=827