aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-rtcdc.c2
-rw-r--r--epan/dissectors/packet-sctp.c13
-rw-r--r--epan/sctpppids.h14
3 files changed, 17 insertions, 12 deletions
diff --git a/epan/dissectors/packet-rtcdc.c b/epan/dissectors/packet-rtcdc.c
index c710af6082..d2307752f9 100644
--- a/epan/dissectors/packet-rtcdc.c
+++ b/epan/dissectors/packet-rtcdc.c
@@ -42,7 +42,7 @@ void proto_register_rtcdc(void);
void proto_reg_handoff_rtcdc(void);
/* PPID used for this protocol */
-static guint32 rtcdc_ppid = WEBRTC_CONTROL_PAYLOAD_PROTOCOL_ID;
+static guint32 rtcdc_ppid = WEBRTC_DCEP_PROTOCOL_ID;
/* Initialize the protocol and registered fields */
static int proto_rtcdc = -1;
diff --git a/epan/dissectors/packet-sctp.c b/epan/dissectors/packet-sctp.c
index 743b1b6b9b..e20c024afc 100644
--- a/epan/dissectors/packet-sctp.c
+++ b/epan/dissectors/packet-sctp.c
@@ -411,11 +411,14 @@ static const value_string sctp_payload_proto_id_values[] = {
{ DIAMETER_PROTOCOL_ID, "DIAMETER" },
{ DIAMETER_DTLS_PROTOCOL_ID, "DIAMETER OVER DTLS" },
{ R14P_BER_PROTOCOL_ID, "R14P" },
- { WEBRTC_CONTROL_PAYLOAD_PROTOCOL_ID, "WebRTC Control" },
- { WEBRTC_DOMSTRING_LAST_PAYLOAD_PROTOCOL_ID, "WebRTC DOMString Last" },
- { WEBRTC_BINARY_DATA_PARTIAL_PAYLOAD_PROTOCOL_ID, "WebRTC Binary Data Partial" },
- { WEBRTC_BINARY_DATA_LAST_PAYLOAD_PROTOCOL_ID, "WebRTC Binary Data Last" },
- { WEBRTC_DOMSTRING_PARTIAL_PAYLOAD_PROTOCOL_ID, "WebRTC DOMString Partial" },
+ { WEBRTC_DCEP_PROTOCOL_ID, "WebRTC Control" },
+ { WEBRTC_STRING_PAYLOAD_PROTOCOL_ID, "WebRTC String" },
+ { WEBRTC_BINARY_PARTIAL_PAYLOAD_PROTOCOL_ID, "WebRTC Binary Partial (Deprecated)" },
+ { WEBRTC_BINARY_PAYLOAD_PROTOCOL_ID, "WebRTC Binary" },
+ { WEBRTC_STRING_PARTIAL_PAYLOAD_PROTOCOL_ID, "WebRTC String Partial (Deprecated)" },
+ { PROTO_3GPP_PUA_PAYLOAD_PROTOCOL_ID, "3GPP PUA" },
+ { WEBRTC_STRING_EMPTY_PAYLOAD_PROTOCOL_ID, "WebRTC String Empty" },
+ { WEBRTC_BINARY_EMPTY_PAYLOAD_PROTOCOL_ID, "WebRTC Binary Empty" },
{ 0, NULL } };
diff --git a/epan/sctpppids.h b/epan/sctpppids.h
index 6dec3d4e8b..995c3bc864 100644
--- a/epan/sctpppids.h
+++ b/epan/sctpppids.h
@@ -81,11 +81,13 @@
#define DIAMETER_DTLS_PROTOCOL_ID 47
#define R14P_BER_PROTOCOL_ID 48
/* Unassigned 49 */
-#define WEBRTC_CONTROL_PAYLOAD_PROTOCOL_ID 50
-#define WEBRTC_DOMSTRING_LAST_PAYLOAD_PROTOCOL_ID 51
-#define WEBRTC_BINARY_DATA_PARTIAL_PAYLOAD_PROTOCOL_ID 52
-#define WEBRTC_BINARY_DATA_LAST_PAYLOAD_PROTOCOL_ID 53
-#define WEBRTC_DOMSTRING_PARTIAL_PAYLOAD_PROTOCOL_ID 54
-#define TGPP_PUA_PAYLOAD_PROTOCOL_ID 55
+#define WEBRTC_DCEP_PROTOCOL_ID 50
+#define WEBRTC_STRING_PAYLOAD_PROTOCOL_ID 51
+#define WEBRTC_BINARY_PARTIAL_PAYLOAD_PROTOCOL_ID 52
+#define WEBRTC_BINARY_PAYLOAD_PROTOCOL_ID 53
+#define WEBRTC_STRING_PARTIAL_PAYLOAD_PROTOCOL_ID 54
+#define PROTO_3GPP_PUA_PAYLOAD_PROTOCOL_ID 55
+#define WEBRTC_STRING_EMPTY_PAYLOAD_PROTOCOL_ID 56
+#define WEBRTC_BINARY_EMPTY_PAYLOAD_PROTOCOL_ID 57
#endif /* sctpppids.h */