Message3852

Author dmbaggett
Recipients amak, dmbaggett
Date 2008-11-26.12:46:29
SpamBayes Score 0.0002267715
Marked as misclassified No
Message-id <1227703589.88.0.0858708971283.issue1182@psf.upfronthosting.co.za>
In-reply-to
Content
The socket code for ssl was creating a new
BufferedInputStream/BufferedOutputStream for each read or write.
If, for instance, you read one byte, it would actually read up to the
buffer size and return you the one byte, while throwing away the buffer
containing anything else that had been read. So any program that read
from an SSL socket would fail.
History
Date User Action Args
2008-11-26 12:46:29dmbaggettsetmessageid: <1227703589.88.0.0858708971283.issue1182@psf.upfronthosting.co.za>
2008-11-26 12:46:29dmbaggettsetrecipients: + dmbaggett, amak
2008-11-26 12:46:29dmbaggettlinkissue1182 messages
2008-11-26 12:46:29dmbaggettcreate