1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

fix naming issue

This commit is contained in:
sangbumlikeagod 2024-12-29 11:59:34 +09:00
parent f8fd43816a
commit b320fdd909

View file

@ -512,9 +512,9 @@ srs_error_t SrsServer::initialize()
reuse_rtc_over_server_ = true;
}
}
for (int idx = 0; idx < server_vecs.size(); idx++)
for (int idx = 0; idx < servers_vec.size(); idx++)
{
string https_listen = server_vec[idx];
string https_listen = servers_vec[idx];
if (stream && rtc && rtc_tcp && https_listen == rtc_listen) {
srs_trace("WebRTC tcp=%s reuses https=%s server", rtc_listen.c_str(), https_listen.c_str());
reuse_rtc_over_server_ = true;