aboutsummaryrefslogtreecommitdiffstats
path: root/t35.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-26 22:20:08 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-26 22:20:08 +0000
commit0d99058ca1b4b51fe1cf8e124c4310f6dd90b4a5 (patch)
treebc25241a0da9687760fcbe9420de1ef3d609f8c4 /t35.h
parent544eaadd5fbdf9bdb5dcace4c43f6a9d75b0672c (diff)
From Tomas Kukosa:
1) string tables for t35CountryCode, t35Extension and h221ManufacturerCode were moved into the new file t35.c because they are common for more dissectors 2) the dissect_h245_NonStandardParameter_with_extension_marker() was moved from h245 to h225 and renamed to dissect_h225_NonStandardParameter() because the NonStandardData type is different for H.225.0 and H.245 3) type of the "h245.nsp.object" dissector table was changed from FT_UINT32 to FT_STRING, so it can select a dissector based on an OID rather than the Adler-32 hash of an OID 4) the "h225.nsp.object" and "h225.nsp.h221" dissector tables were created git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8550 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 't35.h')
-rw-r--r--t35.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/t35.h b/t35.h
new file mode 100644
index 0000000000..0aa8e86c50
--- /dev/null
+++ b/t35.h
@@ -0,0 +1,35 @@
+/* t35.h
+ * T.35 and H.221 tables
+ * 2003 Tomas Kukosa
+ *
+ *
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __T35_H__
+#define __T35_H__
+
+#include "epan/value_string.h"
+
+extern const value_string T35CountryCode_vals[];
+extern const value_string T35Extension_vals[];
+extern const value_string H221ManufacturerCode_vals[];
+
+#endif /* __T35_H__ */