socket.io-client-cpp
socket.io-client-cpp copied to clipboard
feat: basic auth proxy
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");