[pgsqlclient-checkins] pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls SslClie
Status: Inactive
Brought to you by:
carlosga_fb
From: Carlos G. Á. <car...@us...> - 2005-05-30 12:53:01
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv452 Modified Files: SslClientStream.cs Removed Files: SslAsyncResult.cs SslClientBufferedStream.cs Log Message: Updated from mono svn Index: SslClientStream.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls/SslClientStream.cs,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** SslClientStream.cs 23 Apr 2005 10:11:13 -0000 1.29 --- SslClientStream.cs 30 May 2005 12:52:52 -0000 1.30 *************** *** 77,81 **** private object read; private object write; ! private ReadDelegate rd; #endregion --- 77,81 ---- private object read; private object write; ! private ReadDelegate rd; #endregion *************** *** 511,514 **** --- 511,519 ---- private void NetworkReadCallback (IAsyncResult result) { + if (this.disposed) { + recordEvent.Set (); + return; + } + byte[] recbuf = (byte[])result.AsyncState; int n = innerStream.EndRead (result); *************** *** 901,903 **** } } - --- 906,907 ---- --- SslClientBufferedStream.cs DELETED --- --- SslAsyncResult.cs DELETED --- |