aboutsummaryrefslogtreecommitdiffstats
path: root/packet-vines.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-18 01:47:52 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-18 01:47:52 +0000
commita52b79ca98ae095e0d2efd5ba5236d694f0214eb (patch)
treec78e1eb0839423750eb15cc148f38913f8cfde5a /packet-vines.h
parent2020b91759f20cccb7aeaade0596cb5ac0da16b3 (diff)
Add VINES ARP support.
Shuffle the routines for subprotocols of VINES ARP into numerical order by protocol number. The 32-bit net/16-bit subnet fields in the VINES IP header structure doesn't work, as the net has to be aligned on a 32-bit boundary; replace it with a 6-byte address field. svn path=/trunk/; revision=7482
Diffstat (limited to 'packet-vines.h')
-rw-r--r--packet-vines.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/packet-vines.h b/packet-vines.h
index e02f6103ed..458c14246f 100644
--- a/packet-vines.h
+++ b/packet-vines.h
@@ -1,7 +1,7 @@
/* packet-vines.h
* Definitions for packet disassembly structures and routines
*
- * $Id: packet-vines.h,v 1.15 2003/04/18 00:32:47 guy Exp $
+ * $Id: packet-vines.h,v 1.16 2003/04/18 01:47:52 guy Exp $
*
* Don Lafontaine <lafont02@cn.ca>
*
@@ -64,10 +64,8 @@ typedef struct _e_vip {
guint16 vip_pktlen;
guint8 vip_tctl; /* Transport Control */
guint8 vip_proto;
- guint32 vip_dnet;
- guint16 vip_dsub;
- guint32 vip_snet;
- guint16 vip_ssub;
+ guint8 vip_dst[VINES_ADDR_LEN];
+ guint8 vip_src[VINES_ADDR_LEN];
} e_vip;
/* VINES SPP and IPC structs and definitions */