3

Does anyone know how to implement tls using boost sockets ? I have implemented ssl but I would not mind extending it to tls.

Sam Miller
  • 23,808
  • 4
  • 67
  • 87
gda2004
  • 718
  • 13
  • 32

1 Answers1

2

The ssl::context_base class already supports TLS:

ssl::context_base::method

Different methods supported by a context.

you'll want to use ssl::context_base::method::tlsv1

Sam Miller
  • 23,808
  • 4
  • 67
  • 87