Ignore:
Timestamp:
10/30/09 18:13:41 (3 years ago)
Author:
George Potapov <nephrite@…>
Branches:
nginx-v0.8
Parents:
178a98
git-author:
George Potapov <nephrite@…> (10/30/09 18:13:41)
git-committer:
George Potapov <nephrite@…> (10/30/09 18:13:41)
Message:

Vendor drop nginx v0.8.21

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/src/event/ngx_event_accept.c

    rf7c38d rc7670f  
    157157        c->unexpected_eof = 1; 
    158158 
     159#if (NGX_HAVE_UNIX_DOMAIN) 
     160        if (c->sockaddr->sa_family == AF_UNIX) { 
     161            c->tcp_nopush = NGX_TCP_NOPUSH_DISABLED; 
     162            c->tcp_nodelay = NGX_TCP_NODELAY_DISABLED; 
     163#if (NGX_SOLARIS) 
     164            /* Solaris's sendfilev() supports AF_NCA, AF_INET, and AF_INET6 */ 
     165            c->sendfile = 0; 
     166#endif 
     167        } 
     168#endif 
     169 
    159170        rev = c->read; 
    160171        wev = c->write; 
Note: See TracChangeset for help on using the changeset viewer.