Changeset 2064

Show
Ignore:
Timestamp:
01/28/2008 07:00:56 AM (9 months ago)
Author:
jan
Message:

fixed ECONNRESET handling in network-openssl (suppress error-msg)

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/NEWS

    r2062 r2064  
    1616  * support letterhomes in mod_userdir (#1473) 
    1717  * mod_auth ldap rework, most important change is being able to startup if ldap server is down (#1535) 
     18  * fixed ECONNRESET handling in network-openssl 
    1819 
    1920- 1.5.0-r19.. - 
  • trunk/src/network_openssl.c

    r1886 r2064  
    189189                                                switch(errno) { 
    190190                                                case EPIPE: 
     191                                                case ECONNRESET: 
    191192                                                        return NETWORK_STATUS_CONNECTION_CLOSE; 
    192193                                                default: 
     
    293294                                                        switch(errno) { 
    294295                                                        case EPIPE: 
     296                                                        case ECONNRESET: 
    295297                                                                return NETWORK_STATUS_CONNECTION_CLOSE; 
    296298                                                        default: