Lines Matching defs:mode
165 * !AESCCM: no CCM mode, it's uncommon and slow
727 /* Disable OpenSSL's special mode with leading dot in hostname:
862 int mode = SSL_get_verify_mode(self->ssl);
863 if (mode & SSL_VERIFY_PEER) {
866 mode |= SSL_VERIFY_POST_HANDSHAKE;
867 SSL_set_verify(self->ssl, mode, verify_cb);
882 /* If the socket is in non-blocking mode or timeout mode, set the BIO
883 * to non-blocking mode (blocking is the default)
2272 /* Nothing to do unless we're in timeout mode (not non-blocking) */
2981 int mode;
2986 mode = SSL_VERIFY_NONE;
2989 mode = SSL_VERIFY_PEER;
2992 mode = SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
3005 SSL_CTX_set_verify(self->ctx, mode, verify_cb);