diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-19 15:59:04 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-19 15:59:04 +0000 |
commit | f50168c85d696a1d6371d304d4f006008cd3942e (patch) | |
tree | 73da482dfac6e61bf43d679a427fc559984f46aa /packet-ospf.h | |
parent | 0d1465731bb84243115bb9d40cc7f9396197be96 (diff) | |
download | wireshark-f50168c85d696a1d6371d304d4f006008cd3942e.tar.gz wireshark-f50168c85d696a1d6371d304d4f006008cd3942e.tar.bz2 wireshark-f50168c85d696a1d6371d304d4f006008cd3942e.zip |
Added Tony Hart's <thart@avici.com> patch to dissect MD5 authentication
data in OSPF. (corrected copy)
svn path=/trunk/; revision=889
Diffstat (limited to 'packet-ospf.h')
-rw-r--r-- | packet-ospf.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/packet-ospf.h b/packet-ospf.h index 4661b7e27e..8acbef4037 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.4 1999/10/06 03:33:48 guy Exp $ */ +/* $Id: packet-ospf.h,v 1.5 1999/10/19 15:59:04 gram Exp $ */ #define OSPF_HEADER_LENGTH 24 @@ -123,6 +123,13 @@ typedef struct _e_ospf_asexternal_lsa { guint32 external_tag; } e_ospf_asexternal_lsa; +typedef struct _e_ospf_crypto { + guint16 mbz; + guint8 key_id; + guint8 length; + guint32 sequence_num; +} e_ospf_crypto; + 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*); |