socket.io-client-cpp icon indicating copy to clipboard operation
socket.io-client-cpp copied to clipboard

feat: basic auth proxy

Open zeze-zeze opened this issue 3 years ago • 0 comments

With existing websocketpp interface, I implement to support basic auth proxy.

Usage:

sio::client h;
std::string proxy = "http://127.0.0.1:3128/";
h.set_proxy_basic_auth(proxy, "user", "password");
h.connect("http://127.0.0.1:3000");

zeze-zeze avatar Jul 26 '22 07:07 zeze-zeze