summaryrefslogtreecommitdiffstats
path: root/epan/dccpservicecodes.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/dccpservicecodes.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/dccpservicecodes.h')
-rw-r--r--epan/dccpservicecodes.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/epan/dccpservicecodes.h b/epan/dccpservicecodes.h
new file mode 100644
index 0000000..f2c3d43
--- /dev/null
+++ b/epan/dccpservicecodes.h
@@ -0,0 +1,34 @@
+/** @file
+ *
+ * Declarations of DCCP payload protocol IDs.
+ *
+ * Copyright 2021 by Thomas Dreibholz <dreibh [AT] simula.no>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __DCCPSERVICECODES_H__
+#define __DCCPSERVICECODES_H__
+
+/*
+ * DCCP Service Codes.
+ * From https://www.iana.org/assignments/service-codes/service-codes.xhtml
+ * as of 2021-02-19
+ *
+ * Please do not put non-IANA-registered service codes here. Put them in the
+ * dissector using them instead (and consider registering them!).
+ */
+#define NOT_SPECIFIED_SERVICE_CODE 0
+#define LTP_SERVICE_CODE 7107696
+#define DISC_SERVICE_CODE 1145656131
+#define RTCP_SERVICE_CODE 1381253968
+#define RTPA_SERVICE_CODE 1381257281
+#define RTPO_SERVICE_CODE 1381257295
+#define RTPT_SERVICE_CODE 1381257300
+#define RTPV_SERVICE_CODE 1381257302
+#define SYLG_SERVICE_CODE 1398361159
+#define BUNDLES_SERVICE_CODE 1685351985
+#define NPMP_SERVICE_CODE 1852861808
+#define RESERVED_SERVICE_CODE 4294967295
+
+#endif /* dccpservicecodes.h */