OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s_ssl
(Results
1 - 2
of
2
) sorted by null
/external/openssl/crypto/threads/
mttest.c
424
SSL *
s_ssl
=NULL;
local
440
s_ssl
=(SSL *)ctx[2];
442
s_ssl
=SSL_new(s_ctx);
449
if ((
s_ssl
== NULL) || (c_ssl == NULL)) goto err;
463
SSL_set_accept_state(
s_ssl
);
464
SSL_set_bio(
s_ssl
,c_to_s,s_to_c);
465
BIO_set_ssl(s_bio,
s_ssl
,(ctx[3] == NULL)?BIO_CLOSE:BIO_NOCLOSE);
487
if (SSL_in_init(
s_ssl
))
489
SSL_state_string_long(
s_ssl
));
665
SSL_set_shutdown(
s_ssl
,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN)
[
all
...]
/external/openssl/ssl/
ssltest.c
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
;
local
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
);
[
all
...]
Completed in 30 milliseconds