Lines Matching defs:want
1059 * has SSL_get_error() return the value in the |want| parameter. The connection
1062 int create_bare_ssl_connection(SSL *serverssl, SSL *clientssl, int want,
1079 if (want != SSL_ERROR_SSL)
1083 if (want != SSL_ERROR_NONE && err == want)
1097 if (want != SSL_ERROR_SSL)
1101 if (want != SSL_ERROR_NONE && err == want)
1145 int create_ssl_connection(SSL *serverssl, SSL *clientssl, int want)
1151 if (!create_bare_ssl_connection(serverssl, clientssl, want, 1))