Skip to content
Snippets Groups Projects
Commit edef4b29 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

ITS#821: TLS data ready fix from <mattc@chartist.com>

parent fc227a88
No related branches found
No related tags found
No related merge requests found
......@@ -361,6 +361,11 @@ sb_tls_ctrl( Sockbuf_IO_Desc *sbiod, int opt, void *arg )
if ( opt == LBER_SB_OPT_GET_SSL ) {
*((SSL **)arg) = p->ssl;
return 1;
} else if ( opt == LBER_SB_OPT_DATA_READY ) {
if( SSL_pending( p->ssl ) > 0 ) {
return 1;
}
}
return LBER_SBIOD_CTRL_NEXT( sbiod, opt, arg );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment