Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
sctpppids.h
1 /* sctpppids.h
2  * Declarations of SCTP payload protocol IDs.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __SCTPPPIDS_H__
12 #define __SCTPPPIDS_H__
13 
14 /*
15  * SCTP payload protocol IDs.
16  * From http://www.iana.org/assignments/sctp-parameters
17  * as of 2014/02/28
18  *
19  * Please do not put non-IANA-registered PPIDs here. Put them in the dissector
20  * using them instead (and consider registering them!).
21  */
22 #define NOT_SPECIFIED_PROTOCOL_ID 0
23 #define IUA_PAYLOAD_PROTOCOL_ID 1
24 #define M2UA_PAYLOAD_PROTOCOL_ID 2
25 #define M3UA_PAYLOAD_PROTOCOL_ID 3
26 #define SUA_PAYLOAD_PROTOCOL_ID 4
27 #define M2PA_PAYLOAD_PROTOCOL_ID 5
28 #define V5UA_PAYLOAD_PROTOCOL_ID 6
29 #define H248_PAYLOAD_PROTOCOL_ID 7
30 #define BICC_PAYLOAD_PROTOCOL_ID 8
31 #define TALI_PAYLOAD_PROTOCOL_ID 9
32 #define DUA_PAYLOAD_PROTOCOL_ID 10
33 #define ASAP_PAYLOAD_PROTOCOL_ID 11
34 #define ENRP_PAYLOAD_PROTOCOL_ID 12
35 #define H323_PAYLOAD_PROTOCOL_ID 13
36 #define QIPC_PAYLOAD_PROTOCOL_ID 14
37 #define SIMCO_PAYLOAD_PROTOCOL_ID 15
38 #define DDP_SEG_CHUNK_PROTOCOL_ID 16
39 #define DDP_STREAM_SES_CTRL_PROTOCOL_ID 17
40 #define S1AP_PAYLOAD_PROTOCOL_ID 18
41 #define RUA_PAYLOAD_PROTOCOL_ID 19
42 #define HNBAP_PAYLOAD_PROTOCOL_ID 20
43 #define FORCES_HP_PAYLOAD_PROTOCOL_ID 21
44 #define FORCES_MP_PAYLOAD_PROTOCOL_ID 22
45 #define FORCES_LP_PAYLOAD_PROTOCOL_ID 23
46 #define SBC_AP_PAYLOAD_PROTOCOL_ID 24
47 #define NBAP_PAYLOAD_PROTOCOL_ID 25
48 /* Unassigned 26 */
49 #define X2AP_PAYLOAD_PROTOCOL_ID 27
50 #define IRCP_PAYLOAD_PROTOCOL_ID 28
51 #define LCS_AP_PAYLOAD_PROTOCOL_ID 29
52 #define MPICH2_PAYLOAD_PROTOCOL_ID 30
53 #define SABP_PAYLOAD_PROTOCOL_ID 31
54 #define FGP_PAYLOAD_PROTOCOL_ID 32
55 #define PPP_PAYLOAD_PROTOCOL_ID 33
56 #define CALCAPP_PAYLOAD_PROTOCOL_ID 34
57 #define SSP_PAYLOAD_PROTOCOL_ID 35
58 #define NPMP_CTRL_PAYLOAD_PROTOCOL_ID 36
59 #define NPMP_DATA_PAYLOAD_PROTOCOL_ID 37
60 #define ECHO_PAYLOAD_PROTOCOL_ID 38
61 #define DISCARD_PAYLOAD_PROTOCOL_ID 39
62 #define DAYTIME_PAYLOAD_PROTOCOL_ID 40
63 #define CHARGEN_PAYLOAD_PROTOCOL_ID 41
64 #define PROTO_3GPP_RNA_PROTOCOL_ID 42
65 #define PROTO_3GPP_M2AP_PROTOCOL_ID 43
66 #define PROTO_3GPP_M3AP_PROTOCOL_ID 44
67 #define SSH_PAYLOAD_PROTOCOL_ID 45
68 #define DIAMETER_PROTOCOL_ID 46
69 #define DIAMETER_DTLS_PROTOCOL_ID 47
70 #define R14P_BER_PROTOCOL_ID 48
71 /* Unassigned 49 */
72 #define WEBRTC_DCEP_PROTOCOL_ID 50
73 #define WEBRTC_STRING_PAYLOAD_PROTOCOL_ID 51
74 #define WEBRTC_BINARY_PARTIAL_PAYLOAD_PROTOCOL_ID 52
75 #define WEBRTC_BINARY_PAYLOAD_PROTOCOL_ID 53
76 #define WEBRTC_STRING_PARTIAL_PAYLOAD_PROTOCOL_ID 54
77 #define PROTO_3GPP_PUA_PAYLOAD_PROTOCOL_ID 55
78 #define WEBRTC_STRING_EMPTY_PAYLOAD_PROTOCOL_ID 56
79 #define WEBRTC_BINARY_EMPTY_PAYLOAD_PROTOCOL_ID 57
80 #define XWAP_PROTOCOL_ID 58
81 #define XW_CONTROL_PLANE_PROTOCOL_ID 59
82 #define NGAP_PROTOCOL_ID 60
83 #define XNAP_PROTOCOL_ID 61
84 #define F1AP_PROTOCOL_ID 62
85 
86 #endif /* sctpppids.h */