Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/io/http/protocol.cfa

    r8c43d05 r1dbc3e10  
    104104                        if( errno == EAGAIN || errno == EWOULDBLOCK) continue READ;
    105105                        if( errno == ECONNRESET ) return [E408, true, 0, 0];
     106                        if( errno == EPIPE ) return [E408, true, 0, 0];
    106107                        abort( "read error: (%d) %s\n", (int)errno, strerror(errno) );
    107108                }
Note: See TracChangeset for help on using the changeset viewer.