Fix order of ssl_conf vs ssl_setup in programs

Except ssl_phtread_server that will be done later
This commit is contained in:
Manuel Pégourié-Gonnard 2015-05-11 11:25:46 +02:00
parent 9a1a4d6903
commit 06939cebef
13 changed files with 124 additions and 103 deletions

View file

@ -1152,6 +1152,12 @@ void mbedtls_ssl_init( mbedtls_ssl_context *ssl );
/**
* \brief Set up an SSL context for use
*
* \note No copy of the configuration context is made, it can be
* shared by many ssl_context structures.
*
* \warning Modifying the conf structure after is has been used in this
* function is unsupported!
*
* \param ssl SSL context
* \param conf SSL configuration to use
*