From 659fe7004ce98f708f30538df99462b0de210433 Mon Sep 17 00:00:00 2001 From: xiongguangjie Date: Sat, 18 Nov 2023 00:21:54 +0800 Subject: [PATCH] rtc sdp ufrag should not contain # = _ - due to https://crbug.com/1053756 --- webrtc/WebRtcTransport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/WebRtcTransport.cpp b/webrtc/WebRtcTransport.cpp index 9ac6251f..3f798358 100644 --- a/webrtc/WebRtcTransport.cpp +++ b/webrtc/WebRtcTransport.cpp @@ -90,7 +90,7 @@ const char* sockTypeStr(Session* session) { WebRtcTransport::WebRtcTransport(const EventPoller::Ptr &poller) { _poller = poller; - _identifier = "zlm_" + to_string(++s_key); + _identifier = "zlm" + to_string(++s_key); _packet_pool.setSize(64); }