Re: ssl_read function

2001-01-25 Thread Lutz Jaenicke
On Thu, Jan 25, 2001 at 09:19:48AM -0800, Patrick Li wrote: > Hi, > > I am reading the SSL_read() in ssl_lib.c file under ssl directory and it > calls the ssl_read(SSL *, void *, int) function. I searched the ssl > directory and found there is a ssl_read(BIO *, char *, int) defined in > bio_ssl.c

ssl_read function

2001-01-25 Thread Patrick Li
Hi, I am reading the SSL_read() in ssl_lib.c file under ssl directory and it calls the ssl_read(SSL *, void *, int) function. I searched the ssl directory and found there is a ssl_read(BIO *, char *, int) defined in bio_ssl.c. Looks like it is casting the SSL structure to the BIO structure. But