aboutsummaryrefslogtreecommitdiffstats
path: root/packet-atalk.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-05-28 22:59:18 +0000
committerGuy Harris <guy@alum.mit.edu>2000-05-28 22:59:18 +0000
commitcb5b6c4719439cc777a78ae0b3c98088ac114d92 (patch)
tree51090c1aa6a7f302d33be534e97f44d7d68fba9a /packet-atalk.h
parent713245f76cfcd264419e2331b5ec25c34b71d673 (diff)
Give the Appletalk DDP dissector a dissector hash table, and have the
protocols encapsulated inside DDP register themselves with that table. Pull the EIGRP dissector into its own file, as suggested by Paul Ionescu; it's not an IP-specific protocol. svn path=/trunk/; revision=2022
Diffstat (limited to 'packet-atalk.h')
-rw-r--r--packet-atalk.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/packet-atalk.h b/packet-atalk.h
index 2de21f7864..80031c423e 100644
--- a/packet-atalk.h
+++ b/packet-atalk.h
@@ -1,7 +1,7 @@
/* packet-atalk.h
* Definitions for Appletalk packet disassembly (DDP, currently).
*
- * $Id: packet-atalk.h,v 1.2 2000/02/15 21:01:59 gram Exp $
+ * $Id: packet-atalk.h,v 1.3 2000/05/28 22:59:18 guy Exp $
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -29,6 +29,18 @@ struct atalk_ddp_addr {
};
/*
+ * DDP packet types.
+ */
+#define DDP_RTMPDATA 0x01
+#define DDP_NBP 0x02
+#define DDP_ATP 0x03
+#define DDP_AEP 0x04
+#define DDP_RTMPREQ 0x05
+#define DDP_ZIP 0x06
+#define DDP_ADSP 0x07
+#define DDP_EIGRP 0x58
+
+/*
* Routine to take a DDP address and generate a string.
*/
extern gchar *atalk_addr_to_str(const struct atalk_ddp_addr *addrp);