Browse Source

Updating proxy server support note for c++ header

web2098 2 years ago
parent
commit
6995345097
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/rtc/websocket.hpp

+ 1 - 1
include/rtc/websocket.hpp

@@ -34,7 +34,7 @@ public:
 
 	struct Configuration {
 		bool disableTlsVerification = false; // if true, don't verify the TLS certificate
-		optional<ProxyServer> proxyServer;
+		optional<ProxyServer> proxyServer;   // only non-authenticated http supported for now
 		std::vector<string> protocols;
 		optional<std::chrono::milliseconds> pingInterval; // zero to disable
 		optional<int> maxOutstandingPings;