Home
last modified time | relevance | path

Searched refs:SSL_peek (Results 1 – 6 of 6) sorted by relevance

/mirbsd/src/lib/libssl/src/doc/ssl/
DSSL_get_error.pod17 SSL_read(), SSL_peek(), or SSL_write() on B<ssl>. The value returned by
67 SSL_read() or SSL_peek() may want to write data and SSL_write() may want
70 SSL_read(), SSL_peek(), and SSL_write() will handle any pending handshakes.
Dssl.pod551 =item int B<SSL_peek>(SSL *ssl, void *buf, int num);
/mirbsd/src/lib/libssl/src/ssl/
Ds23_lib.c206 return(SSL_peek(s,buf,len)); in ssl23_peek()
Dssl.h1323 int SSL_peek(SSL *ssl,void *buf,int num);
Dssl_lib.c849 int SSL_peek(SSL *s,void *buf,int num) in SSL_peek() function
/mirbsd/src/lib/libssl/src/apps/
Ds_client.c873 printf("read=%d pending=%d peek=%d\n",k,SSL_pending(con),SSL_peek(con,zbuf,10240)); in MAIN()