obs-webrtc: Follow HTTP redirects

This commit is contained in:
aggresss 2023-07-24 16:20:06 +08:00 committed by Colin Edwards
parent 046560eadc
commit 34e57a0496

View file

@ -313,6 +313,8 @@ bool WHIPOutput::Connect()
curl_easy_setopt(c, CURLOPT_POST, 1L);
curl_easy_setopt(c, CURLOPT_COPYPOSTFIELDS, offer_sdp);
curl_easy_setopt(c, CURLOPT_TIMEOUT, 8L);
curl_easy_setopt(c, CURLOPT_FOLLOWLOCATION, 1L);
curl_easy_setopt(c, CURLOPT_UNRESTRICTED_AUTH, 1L);
auto cleanup = [&]() {
curl_easy_cleanup(c);