Lines Matching defs:meth
713 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
717 ctx->method = meth;
3323 const SSL_METHOD *meth)
3327 if (meth == NULL) {
3367 ret->method = meth;
3374 ret->session_timeout = meth->get_timeout();
3439 if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
3533 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
3535 return SSL_CTX_new_ex(NULL, NULL, meth);
3917 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
3921 if (s->method != meth) {
3925 if (sm->version == meth->version)
3926 s->method = meth;
3929 s->method = meth;
3934 s->handshake_func = meth->ssl_connect;
3936 s->handshake_func = meth->ssl_accept;