summaryrefslogtreecommitdiffstats
path: root/epan/x264_prt_id.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/x264_prt_id.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/x264_prt_id.h')
-rw-r--r--epan/x264_prt_id.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/epan/x264_prt_id.h b/epan/x264_prt_id.h
new file mode 100644
index 00000000..71d1a34e
--- /dev/null
+++ b/epan/x264_prt_id.h
@@ -0,0 +1,22 @@
+/** @file
+ *
+ * Definitions of X.264/ISO 11570 transport protocol IDs
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __X264_PRT_ID_H__
+#define __X264_PRT_ID_H__
+
+/* X.264 / ISO 11570 transport protocol ID values. */
+
+#define PRT_ID_ISO_8073 0x01 /* X.224/ISO 8073 COTP */
+#define PRT_ID_ISO_8602 0x02 /* X.234/ISO 8602 CLTP */
+#define PRT_ID_ISO_10736_ISO_8073 0x03 /* X.274/ISO 10736 + X.224/ISO 8073 */
+#define PRT_ID_ISO_10736_ISO_8602 0x04 /* X.274/ISO 10736 + X.234/ISO 8602 */
+
+#endif