Searched refs:InBio (Results 1 – 3 of 3) sorted by relevance
167 if (TlsConn->InBio != NULL) { in TlsFree()168 BIO_free (TlsConn->InBio); in TlsFree()227 TlsConn->InBio = NULL; in TlsNew()232 TlsConn->InBio = BIO_new (BIO_s_mem ()); in TlsNew()233 if (TlsConn->InBio == NULL) { in TlsNew()242 BIO_set_mem_eof_return (TlsConn->InBio, -1); in TlsNew()261 ASSERT (TlsConn->Ssl != NULL && TlsConn->InBio != NULL && TlsConn->OutBio != NULL); in TlsNew()266 SSL_set_bio (TlsConn->Ssl, TlsConn->InBio, TlsConn->OutBio); in TlsNew()
97 TlsConn->Ssl == NULL || TlsConn->InBio == NULL || TlsConn->OutBio == NULL || \ in TlsDoHandshake()120 BIO_write (TlsConn->InBio, BufferIn, (UINT32) BufferInSize); in TlsDoHandshake()219 TlsConn->Ssl == NULL || TlsConn->InBio == NULL || TlsConn->OutBio == NULL || \ in TlsHandleAlert()229 Ret = BIO_write (TlsConn->InBio, BufferIn, (UINT32) BufferInSize); in TlsHandleAlert()294 TlsConn->Ssl == NULL || TlsConn->InBio == NULL || TlsConn->OutBio == NULL || \ in TlsCloseNotify()383 if (TlsConn == NULL || TlsConn->InBio == 0) { in TlsCtrlTrafficIn()390 return BIO_write (TlsConn->InBio, Buffer, (UINT32) BufferSize); in TlsCtrlTrafficIn()
32 BIO *InBio; member