aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ospf.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-04-16 22:46:25 +0000
committerGuy Harris <guy@alum.mit.edu>2000-04-16 22:46:25 +0000
commit9aa7670a4eb9e7aac604180b00ca4fa751d68ea7 (patch)
treeaa09ab7e91aa70df10e78c4ee02b0eabfda0c8db /packet-ospf.h
parent4179944c14ac8026099f6416fa80421a29c673b8 (diff)
Register an "ip.proto" dissector table for IPv4, and have dissectors for
protocols that run inside IPv4 register themselves with it using "dissector_add()". Make various dissectors static if they can be, and get rid of any header files that no longer contain any information as a result of that change. svn path=/trunk/; revision=1870
Diffstat (limited to 'packet-ospf.h')
-rw-r--r--packet-ospf.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/packet-ospf.h b/packet-ospf.h
index 039af76f01..3434c241ac 100644
--- a/packet-ospf.h
+++ b/packet-ospf.h
@@ -1,6 +1,6 @@
/* packet-ospf.h (c) 1998 Hannes Boehm */
-/* $Id: packet-ospf.h,v 1.7 2000/03/09 18:31:51 ashokn Exp $ */
+/* $Id: packet-ospf.h,v 1.8 2000/04/16 22:46:21 guy Exp $ */
#define OSPF_HEADER_LENGTH 24
@@ -137,16 +137,3 @@ typedef struct _e_ospf_crypto {
guint8 length;
guint32 sequence_num;
} e_ospf_crypto;
-
-void dissect_ospf(const u_char *, int, frame_data *, proto_tree *);
-void dissect_ospf_hello(const u_char*, int, frame_data*, proto_tree*);
-void dissect_ospf_db_desc(const u_char*, int, frame_data*, proto_tree*);
-void dissect_ospf_ls_req(const u_char*, int, frame_data*, proto_tree*);
-void dissect_ospf_ls_upd(const u_char*, int, frame_data*, proto_tree*);
-void dissect_ospf_ls_ack(const u_char*, int, frame_data*, proto_tree*);
-
-/* dissect_ospf_lsa returns the length of the LSA
- * if disassemble_body is set to FALSE (e.g. in LSA ACK
- * packets), the LSA-header length is returned (20)
- */
-int dissect_ospf_lsa(const u_char*, int, frame_data*, proto_tree*, int disassemble_body);