1

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?

Sam Miller
  • 23,808
  • 4
  • 67
  • 87
user1064036
  • 157
  • 4
  • 11

1 Answers1

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