Lines Matching defs:meth
653 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
657 ctx->method = meth;
3223 const SSL_METHOD *meth)
3227 if (meth == NULL) {
3267 ret->method = meth;
3274 ret->session_timeout = meth->get_timeout();
3339 if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
3433 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
3435 return SSL_CTX_new_ex(NULL, NULL, meth);
3818 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
3822 if (s->method != meth) {
3826 if (sm->version == meth->version)
3827 s->method = meth;
3830 s->method = meth;
3835 s->handshake_func = meth->ssl_connect;
3837 s->handshake_func = meth->ssl_accept;