Просмотр исходного кода

obs-webrtc: Follow HTTP redirects

aggresss 2 лет назад
Родитель
Сommit
34e57a0496
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      plugins/obs-webrtc/whip-output.cpp

+ 2 - 0
plugins/obs-webrtc/whip-output.cpp

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