Open
Description
Hi,
I am trying to read the headers right after the connect() in a websocket client app (rest-sdk 2.6).
auto config = client->config();
auto headers = config.headers();
The connect was successful, but the headers are always empty even if I can see them from wireshark.
As an additional information, I can't even see the server name (by default I understood that it should show up).
auto server_name = config.server_name();
My final target is to access the "Sec-WebSocket-Accept" string which should be used as an unique identifier of the connection.
Thank you