summaryrefslogtreecommitdiff
path: root/packet-ppp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-07-11 09:30:49 +0000
committerGuy Harris <guy@alum.mit.edu>2003-07-11 09:30:49 +0000
commit0c88f96ca0052e98a42b2bd6195771273c62c1db (patch)
tree6401b632d69ea20ddd51849cae79cafc769dd275 /packet-ppp.c
parent48b1ab757e38eca38cb489e7576bc104c95bae2e (diff)
downloadwireshark-0c88f96ca0052e98a42b2bd6195771273c62c1db.tar.gz
Add a routine "dissect_ipv6_options()" that works like
"dissect_ip_tcp_options()" but for options that are like IPv6 options (i.e., the length byte has a value that doesn't include the option code or length byte). Add an "ip_opts.h" header to declare it, and move the declaration of stuff used by it and "dissect_ip_tcp_options()", and the declaration of "dissect_ip_tcp_options()", to that header. Use "dissect_ipv6_options()" for Mobile IPv6 options. Get rid of the unused "mip6_opt_types[]" array in "packet-mip6.h". svn path=/trunk/; revision=8015
Diffstat (limited to 'packet-ppp.c')
-rw-r--r--packet-ppp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-ppp.c b/packet-ppp.c
index 383a047b82..5913e49510 100644
--- a/packet-ppp.c
+++ b/packet-ppp.c
@@ -2,7 +2,7 @@
* Routines for ppp packet disassembly
* RFC 1661, RFC 1662
*
- * $Id: packet-ppp.c,v 1.113 2003/06/13 04:07:13 guy Exp $
+ * $Id: packet-ppp.c,v 1.114 2003/07/11 09:30:48 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -36,6 +36,7 @@
#include "packet-ppp.h"
#include "ppptypes.h"
#include "etypes.h"
+#include "ip_opts.h"
#include <epan/atalk-utils.h>
#include "packet-chdlc.h"
#include "packet-ip.h"