diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-06-07 20:28:51 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-06-07 20:28:51 +0000 |
commit | c16562407da1b05e51e8890ec0bbdbecab60e71b (patch) | |
tree | 6207f6f86bfe5e9ae189b7cd8f8ec258c150ad59 /wiretap/wtap.c | |
parent | 17e512b059e95a864ac02a03df6e826fd45ac897 (diff) | |
download | wireshark-c16562407da1b05e51e8890ec0bbdbecab60e71b.tar.gz wireshark-c16562407da1b05e51e8890ec0bbdbecab60e71b.tar.bz2 wireshark-c16562407da1b05e51e8890ec0bbdbecab60e71b.zip |
Add an encapsulation type for BACnet MS/TP, and map the newly-assigned
libpcap DLT_ value for BACnet MS/TP to it.
svn path=/trunk/; revision=11126
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r-- | wiretap/wtap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c index 3fd92285a1..3ec9d2d773 100644 --- a/wiretap/wtap.c +++ b/wiretap/wtap.c @@ -1,6 +1,6 @@ /* wtap.c * - * $Id: wtap.c,v 1.93 2004/03/30 19:37:31 guy Exp $ + * $Id: wtap.c,v 1.94 2004/06/07 20:28:51 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -248,6 +248,9 @@ static const struct encap_type_info { /* WTAP_ENCAP_APPLE_IP_OVER_IEEE1394 */ { "Apple IP-over-IEEE 1394", "ap1394" }, + + /* WTAP_ENCAP_BACNET_MS_TP */ + { "BACnet MS/TP", "bacnet-ms-tp" }, }; /* Name that should be somewhat descriptive. */ |