diff options
author | Guy Harris <guy@alum.mit.edu> | 2012-08-02 16:54:43 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2012-08-02 16:54:43 +0000 |
commit | 835111692f4a1313deb4d699a376e4496f8eabb2 (patch) | |
tree | 450e1533309ed244373923da34cafe84adca7b1c /capture_info.c | |
parent | 89e6169fc56576893c9ffedc0541994b73521c0d (diff) | |
download | wireshark-835111692f4a1313deb4d699a376e4496f8eabb2.tar.gz wireshark-835111692f4a1313deb4d699a376e4496f8eabb2.tar.bz2 wireshark-835111692f4a1313deb4d699a376e4496f8eabb2.zip |
From Richard Stearn: support for AX.25, including support for
LINKTYPE_AX25.
svn path=/trunk/; revision=44211
Diffstat (limited to 'capture_info.c')
-rw-r--r-- | capture_info.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/capture_info.c b/capture_info.c index 9e7e584573..27fd1a6581 100644 --- a/capture_info.c +++ b/capture_info.c @@ -41,6 +41,7 @@ #include <epan/dissectors/packet-ap1394.h> #include <epan/dissectors/packet-atalk.h> #include <epan/dissectors/packet-atm.h> +#include <epan/dissectors/packet-ax25.h> #include <epan/dissectors/packet-clip.h> #include <epan/dissectors/packet-eth.h> #include <epan/dissectors/packet-fddi.h> @@ -355,6 +356,9 @@ capture_info_packet(packet_counts *counts, gint wtap_linktype, const guchar *pd, case WTAP_ENCAP_AX25_KISS: capture_ax25_kiss(pd, 0, caplen, counts); break; + case WTAP_ENCAP_AX25: + capture_ax25(pd, 0, caplen, counts); + break; /* XXX - some ATM drivers on FreeBSD might prepend a 4-byte ATM pseudo-header to DLT_ATM_RFC1483, with LLC header following; we might have to implement that at some point. */ |