diff options
author | Anders Broman <anders.broman@ericsson.com> | 2005-05-17 19:50:38 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2005-05-17 19:50:38 +0000 |
commit | 8e48f993ae01d104c7bd8eb9e5fe2071ba9219c4 (patch) | |
tree | e33f687b840f64e169702a0eb71b4f237c994f3d /wiretap/wtap.c | |
parent | 4968c6f0860fc74c27e88484d91dc7a7021e51ec (diff) | |
download | wireshark-8e48f993ae01d104c7bd8eb9e5fe2071ba9219c4.tar.gz wireshark-8e48f993ae01d104c7bd8eb9e5fe2071ba9219c4.tar.bz2 wireshark-8e48f993ae01d104c7bd8eb9e5fe2071ba9219c4.zip |
From Mark C Brown,:
Fixes for LAP-B (SX25L2) and X.25 (SX25L3) nettl trace records.
svn path=/trunk/; revision=14385
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r-- | wiretap/wtap.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c index a4a26459bd..7bdd451dff 100644 --- a/wiretap/wtap.c +++ b/wiretap/wtap.c @@ -290,6 +290,16 @@ static const struct encap_type_info { /* WTAP_ENCAP_JUNIPER_PPPOE */ { "Juniper PPPoE", "juniper-pppoe" }, + + /* WTAP_ENCAP_GCOM_TIE1 */ + { "GCOM TIE1", "gcom-tie1" }, + + /* WTAP_ENCAP_GCOM_SERIAL */ + { "GCOM Serial", "gcom-serial" }, + + /* WTAP_ENCAP_NETTL_X25 */ + { "X25 with nettl headers", "x25-nettl" }, + }; /* Name that should be somewhat descriptive. */ |