aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ripng.c
AgeCommit message (Collapse)AuthorFilesLines
1999-11-16Replace the ETT_ "enum" members, declared in "packet.h", withGuy Harris1-3/+11
dynamically-assigned "ett_" integer values, assigned by "proto_register_subtree_array()"; this: obviates the need to update "packet.h" whenever you add a new subtree type - you only have to add a call to "proto_register_subtree_array()" to a "register" routine and an array of pointers to "ett_", if they're not already there, and add a pointer to the new "ett_" variable to the array, if they are there; would allow run-time-loaded dissectors to allocate subtree types when they're loaded. svn path=/trunk/; revision=1043
1999-10-18improve ripng dissector. decode route entries in more detail.Jun-ichiro itojun Hagino1-2/+24
svn path=/trunk/; revision=878
1999-10-15provide ripng.{version,cmd} to the filtering engine.Jun-ichiro itojun Hagino1-5/+18
svn path=/trunk/; revision=841
1999-10-14implement ipprotostr() in ipproto.c, which basically does ipprotobynumber()Jun-ichiro itojun Hagino1-14/+10
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
1999-10-13Jun-ichiro itojun Hagino's code for PIM, and some fixes from him asGuy Harris1-2/+2
well. Add some more protocols to the list of value/string pairs for IP protocol types. svn path=/trunk/; revision=822
1999-10-12Jun-ichiro itojun Hagino's changes for IPv6 extension header decodingGuy Harris1-0/+108
and RIPng decoding. svn path=/trunk/; revision=818