Encapsulation (WAS: err in SSL_shutdown)

2001-08-19 Thread Miles Sabin
data structures completely opaque? Would it break huge amounts of code which depend on being able to poke around in the innards of the implementation? Cheers, Miles -- Miles Sabin InterX Internet Systems Architect

RE: Socket hangs on SSL_read/SSL_write

2001-08-16 Thread Miles Sabin
ble at the point at which it was examined by select. Any actual read/write occurs later, leaving a nice big window of opportunity for races (eg. another thread might consume all available input before the selecting thread gets a shot at it). Cheers, Miles -- Miles Sabin

SSL_writev()?

2001-08-09 Thread Miles Sabin
understand that the performance tradeoffs are different with SSL/TLS vs. plain TCP, but I still think this would be likely to be a win performance-wise. I have a vague idea that something like this can be done using BIO_nwrite(), but an SSL_writev() would certainly be a useful addition. Thoughts? C