Ignore:
Timestamp:
2005-12-18T01:02:29Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
43f205b
Parents:
7c0a497
Message:

Non-blocking I/O for OpenSSL, plus some extra (important) cleanup code for GnuTLS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/ssl_gnutls.c

    r7c0a497 ra03a9f3  
    111111       
    112112        if( conn->inpa != -1 )
     113        {
    113114                gaim_input_remove( conn->inpa );
     115                conn->inpa = -1;
     116        }
    114117       
    115118        if( ( st = gnutls_handshake( conn->session ) ) < 0 )
     
    183186        struct scd *conn = conn_;
    184187       
     188        if( conn->inpa != -1 )
     189                gaim_input_remove( conn->inpa );
     190       
    185191        if( conn->established )
    186192                gnutls_bye( conn->session, GNUTLS_SHUT_WR );
Note: See TracChangeset for help on using the changeset viewer.