I'm using boost::asio and I've been looking at the example code on how to connect to an ssl host. But I want to send a get request after I've connected to the server through ssl, how is this possible? Do I send a get request as the http example do exactly?
Asked
Active
Viewed 304 times
1
-
@JoachimPileborg make your comment an answer – Sam Miller Apr 16 '12 at 03:45
1 Answers
0
After the handshake is done (handle_handshake
in the example) and there was no errors, you should be able to use the connection just as any other Boost ASIO connection.

Some programmer dude
- 400,186
- 35
- 402
- 621