Home | History | Annotate | Download | only in ssl

Lines Matching refs:s_ssl

310 int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
311 int doit(SSL *s_ssl,SSL *c_ssl,long bytes);
523 SSL *c_ssl,*s_ssl;
1086 s_ssl=SSL_new(s_ctx);
1111 ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time);
1113 ret=doit(s_ssl,c_ssl,bytes);
1144 SSL_free(s_ssl);
1169 s_ssl, SSL *c_ssl, long count,
1196 SSL_set_accept_state(s_ssl);
1197 SSL_set_bio(s_ssl, server, server);
1198 (void)BIO_set_ssl(s_ssl_bio, s_ssl, BIO_NOCLOSE);
1338 if (SSL_in_init(s_ssl))
1340 SSL_state_string_long(s_ssl));
1519 && strncmp("2SSV", SSL_state_string(s_ssl), 4) == 0)
1563 int doit(SSL *s_ssl, SSL *c_ssl, long count)
1602 SSL_set_accept_state(s_ssl);
1603 SSL_set_bio(s_ssl,c_to_s,s_to_c);
1604 BIO_set_ssl(s_bio,s_ssl,BIO_NOCLOSE);
1624 if (SSL_in_init(s_ssl))
1626 SSL_state_string_long(s_ssl));
1833 * OPENSSL_free()ed twice. Once when th s_ssl is SSL_free()ed and
1835 * This is a hack required because s_ssl and c_ssl are sharing the same
1839 if (s_ssl != NULL)
1841 s_ssl->rbio=NULL;
1842 s_ssl->wbio=NULL;