aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ip.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-08-26 17:31:37 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-08-26 17:31:37 +0000
commitda72d12846b6d860ea305d2a0926b734baad27ef (patch)
treed3798d056fb1e337a24fb7905b2413fbd43d7e14 /packet-ip.c
parentf93c76fd10c0899a5ce6b8eae5009c5b374cdbd8 (diff)
Dissect unknown IP protocols with dissect_data().
svn path=/trunk/; revision=585
Diffstat (limited to 'packet-ip.c')
-rw-r--r--packet-ip.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-ip.c b/packet-ip.c
index fda851c1c1..54332d5025 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.39 1999/08/21 21:06:11 gerald Exp $
+ * $Id: packet-ip.c,v 1.40 1999/08/26 17:31:37 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -824,6 +824,9 @@ again:
case IP_PROTO_IPV6:
dissect_ipv6(pd, offset, fd, tree);
break;
+ default:
+ dissect_data(pd, offset, fd, tree);
+ break;
}
}