diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-11-21 14:43:53 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-11-21 14:43:53 +0000 |
commit | 34c9f8241c4b90afde5acce7211b7895a6e219ad (patch) | |
tree | 799db60e6c7d29589ae0d24371731aa65714ceb4 /packet-ip.c | |
parent | eb65d4fdb9286a6d339b01e9c4b60a5441aa3aa3 (diff) | |
download | wireshark-34c9f8241c4b90afde5acce7211b7895a6e219ad.tar.gz wireshark-34c9f8241c4b90afde5acce7211b7895a6e219ad.tar.bz2 wireshark-34c9f8241c4b90afde5acce7211b7895a6e219ad.zip |
Added Heikki Vatiainen's <hessu@cs.tut.fi> VRRP dissector.
svn path=/trunk/; revision=1083
Diffstat (limited to 'packet-ip.c')
-rw-r--r-- | packet-ip.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-ip.c b/packet-ip.c index 9f58e2edb5..fe3d877a6f 100644 --- a/packet-ip.c +++ b/packet-ip.c @@ -1,7 +1,7 @@ /* packet-ip.c * Routines for IP and miscellaneous IP protocol packet disassembly * - * $Id: packet-ip.c,v 1.63 1999/11/17 01:35:57 guy Exp $ + * $Id: packet-ip.c,v 1.64 1999/11/21 14:43:52 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -948,6 +948,9 @@ again: case IP_PROTO_IPCOMP: dissect_ipcomp(pd, offset, fd, tree); break; + case IP_PROTO_VRRP: + dissect_vrrp(pd, offset, fd, tree); + break; default: dissect_data(pd, offset, fd, tree); break; |