1 /* dccpservicecodes.h
2  * Declarations of DCCP payload protocol IDs.
3  *
4  * Copyright 2021 by Thomas Dreibholz <dreibh [AT] simula.no>
5  *
6  * SPDX-License-Identifier: GPL-2.0-or-later
7  */
8 
9 #ifndef __DCCPSERVICECODES_H__
10 #define __DCCPSERVICECODES_H__
11 
12 /*
13  * DCCP Service Codes.
14  * From https://www.iana.org/assignments/service-codes/service-codes.xhtml
15  * as of 2021-02-19
16  *
17  * Please do not put non-IANA-registered service codes here.  Put them in the
18  * dissector using them instead (and consider registering them!).
19  */
20 #define NOT_SPECIFIED_SERVICE_CODE            0
21 #define LTP_SERVICE_CODE                7107696
22 #define DISC_SERVICE_CODE            1145656131
23 #define RTCP_SERVICE_CODE            1381253968
24 #define RTPA_SERVICE_CODE            1381257281
25 #define RTPO_SERVICE_CODE            1381257295
26 #define RTPT_SERVICE_CODE            1381257300
27 #define RTPV_SERVICE_CODE            1381257302
28 #define SYLG_SERVICE_CODE            1398361159
29 #define BUNDLES_SERVICE_CODE         1685351985
30 #define NPMP_SERVICE_CODE            1852861808
31 #define RESERVED_SERVICE_CODE        4294967295
32 
33 #endif /* dccpservicecodes.h */
34