Support Appletalk, IPv6, and Banyan Vines over ARCNET.

svn path=/trunk/; revision=6987
This commit is contained in:
Guy Harris 2003-01-23 09:39:33 +00:00
parent 5b1484f7b3
commit 6d3d3efa15
3 changed files with 9 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* Routines for AppleTalk packet disassembly: LLAP, DDP, NBP, ATP, ASP,
* RTMP.
*
* $Id: packet-atalk.c,v 1.85 2002/12/19 11:22:03 sahlberg Exp $
* $Id: packet-atalk.c,v 1.86 2003/01/23 09:39:32 guy Exp $
*
* Simon Wilkinson <sxw@dcs.ed.ac.uk>
*
@ -36,6 +36,7 @@
#include "etypes.h"
#include "ppptypes.h"
#include "aftypes.h"
#include "arcnet_pids.h"
#include <epan/atalk-utils.h>
#include <epan/conversation.h>
@ -2271,6 +2272,7 @@ proto_reg_handoff_atalk(void)
dissector_add("chdlctype", ETHERTYPE_ATALK, ddp_handle);
dissector_add("ppp.protocol", PPP_AT, ddp_handle);
dissector_add("null.type", BSD_AF_APPLETALK, ddp_handle);
dissector_add("arcnet.protocol_id", ARCNET_PROTO_APPLETALK, ddp_handle);
nbp_handle = create_dissector_handle(dissect_nbp, proto_nbp);
dissector_add("ddp.type", DDP_NBP, nbp_handle);

View File

@ -1,7 +1,7 @@
/* packet-ipv6.c
* Routines for IPv6 packet disassembly
*
* $Id: packet-ipv6.c,v 1.91 2002/12/19 11:22:29 sahlberg Exp $
* $Id: packet-ipv6.c,v 1.92 2003/01/23 09:39:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -43,6 +43,7 @@
#include "ppptypes.h"
#include "aftypes.h"
#include "nlpid.h"
#include "arcnet_pids.h"
/*
* NOTE: ipv6.nxt is not very useful as we will have chained header.
@ -1210,4 +1211,5 @@ proto_reg_handoff_ipv6(void)
dissector_add("chdlctype", ETHERTYPE_IPv6, ipv6_handle);
dissector_add("fr.ietf", NLPID_IP6, ipv6_handle);
dissector_add("x.25.spi", NLPID_IP6, ipv6_handle);
dissector_add("arcnet.protocol_id", ARCNET_PROTO_IPv6, ipv6_handle);
}

View File

@ -1,7 +1,7 @@
/* packet-vines.c
* Routines for Banyan VINES protocol packet disassembly
*
* $Id: packet-vines.c,v 1.43 2002/08/28 21:00:36 jmayer Exp $
* $Id: packet-vines.c,v 1.44 2003/01/23 09:39:33 guy Exp $
*
* Don Lafontaine <lafont02@cn.ca>
*
@ -36,6 +36,7 @@
#include "etypes.h"
#include "ppptypes.h"
#include "ipproto.h"
#include "arcnet_pids.h"
#define UDP_PORT_VINES 573
@ -340,6 +341,7 @@ proto_reg_handoff_vines(void)
{
dissector_add("ethertype", ETHERTYPE_VINES, vines_handle);
dissector_add("ppp.protocol", PPP_VINES, vines_handle);
dissector_add("arcnet.protocol_id", ARCNET_PROTO_BANYAN, vines_handle);
data_handle = find_dissector("data");
}