HomeSort by relevance Sort by last modified time
    Searched refs:SSL_accept (Results 1 - 9 of 9) sorted by null

  /external/libmicrohttpd/src/microhttpd/
connection_https.c 52 ret = SSL_accept (connection->tls_session);
  /external/boringssl/src/tool/
server.cc 136 int ret = SSL_accept(ssl);
  /external/libmicrohttpd/src/microspdy/
io_openssl.c 151 //for non-blocking I/O SSL_accept may return -1
153 if(1 != (ret = SSL_accept(session->io_context)))
155 SPDYF_DEBUG("SSL_accept %i",ret);
  /external/libvncserver/libvncserver/
rfbssl_openssl.c 72 while ((r = SSL_accept(ctx->ssl)) < 0) {
77 rfbErr("SSL_accept failed %d\n", SSL_get_error(ctx->ssl, r));
  /external/webrtc/webrtc/base/
opensslstreamadapter.cc 809 int code = (role_ == SSL_CLIENT) ? SSL_connect(ssl_) : SSL_accept(ssl_);
    [all...]
  /external/boringssl/src/ssl/test/
bssl_shim.cc     [all...]
  /external/boringssl/src/include/openssl/
ssl.h 295 /* SSL_accept configures |ssl| as a server, if unconfigured, and calls
297 OPENSSL_EXPORT int SSL_accept(SSL *ssl);
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.c 524 ssl->handshake_func = ssl->method->ssl_accept;
579 int SSL_accept(SSL *ssl) {
585 if (ssl->handshake_func != ssl->method->ssl_accept) {
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 660 str = "SSL_accept";
    [all...]

Completed in 228 milliseconds