rtc sdp ufrag should not contain # = _ - due to https://crbug.com/1053756

This commit is contained in:
xiongguangjie 2023-11-18 00:21:54 +08:00
parent 7865f2c360
commit 659fe7004c
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}