Skip to content
  1. Oct 15, 2008
    • Ruediger Pluem's avatar
      * Revert r703998. · e8f1dd68
      Ruediger Pluem authored
        The call to apr_socket_timeout_set before apr_socket_connect already sets the
        socket to non-blocking mode because the timeout of the socket is -1 after creation. A further
        call to apr_socket_timeout_set (after the connect call does not do this, because the old
        and the new timeout are >=0). The further code expects the socket to be in non-blocking
        mode, otherwise we have regressions with ssl. This can be notified by running t/ssl/proxy
        on 2.2.x which runs much much slower with the patch applied. This does not happen
        on trunk because the socket is set back to non blocking by the core output filter
        (async write completion).
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@704753 13f79535-47bb-0310-9956-ffa450edef68
      e8f1dd68
  2. Oct 13, 2008
  3. Oct 08, 2008
  4. Oct 07, 2008
  5. Sep 19, 2008
  6. Sep 18, 2008
  7. Sep 17, 2008
  8. Sep 14, 2008
  9. Sep 09, 2008
  10. Sep 08, 2008
  11. Sep 02, 2008
  12. Aug 30, 2008
  13. Aug 29, 2008
  14. Aug 26, 2008
  15. Aug 21, 2008
  16. Aug 15, 2008
  17. Aug 12, 2008
  18. Aug 09, 2008
  19. Aug 07, 2008
  20. Aug 04, 2008
  21. Jul 22, 2008
  22. Jul 19, 2008
  23. Jul 04, 2008
  24. Jun 29, 2008
  25. Jun 20, 2008
  26. Jun 10, 2008
  27. Jun 09, 2008
  28. Jun 08, 2008
    • Jeff Trawick's avatar
      core: Fix address-in-use startup failure on some platforms caused · d8e8965d
      Jeff Trawick authored
      by attempting to set up an IPv4 listener which overlaps with an 
      existing IPv6 listener.
      
      The failure occurred on the second pass of the open-logs hook in
      a configuration such as the following:
      
        Listen 8080
        Listen 0.0.0.0:8081
        Listen [::]:8081
      
      During the first pass, the two port 8081 listen recs were 
      adjacent and existing logic prevented binding to 0.0.0.0:8081.
      On the second pass, they were not adjacent and we then tried
      to bind to 0.0.0.0:8081, leading to failure on some platforms
      (seen on SLES 9 and Ubuntu 7.10, not seen on many other Unix-ish
      platforms).
      
      Leave a note about other unhandled configurations.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@664535 13f79535-47bb-0310-9956-ffa450edef68
      d8e8965d