コード例 #1
0
ファイル: m_ssl_mbedtls.cpp プロジェクト: std46/inspircd
 void SetupServerSession(mbedtls_ssl_context* sess)
 {
     mbedtls_ssl_setup(sess, serverctx.GetConf());
 }
コード例 #2
0
ファイル: m_ssl_mbedtls.cpp プロジェクト: std46/inspircd
 /** Set up the given session with the settings in this profile
  */
 void SetupClientSession(mbedtls_ssl_context* sess)
 {
     mbedtls_ssl_setup(sess, clientctx.GetConf());
 }