1. 29 Jan, 2001 1 commit
    • William A. Rowe Jr's avatar
      · c6cd082e
      William A. Rowe Jr authored
        *) Adopt apr user/group name features for mod_rewrite.  Eliminates some
           'extra' stat's for user/group since they should never occur, and now
           resolves the SCRIPT_USER and SCRIPT_GROUP, including on WinNT NTFS
           volumes.
      
        No-one commented on loosing the 'stat' calls, can anyone invent a scenario
        where they could be required?  Also, I don't like the casts either, so if
        you have a better solution, don't whine, just fix it :)
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87904 13f79535-47bb-0310-9956-ffa450edef68
      c6cd082e
  2. 28 Jan, 2001 8 commits
  3. 27 Jan, 2001 3 commits
  4. 26 Jan, 2001 1 commit
  5. 24 Jan, 2001 1 commit
  6. 23 Jan, 2001 1 commit
  7. 21 Jan, 2001 2 commits
  8. 20 Jan, 2001 3 commits
  9. 19 Jan, 2001 3 commits
  10. 18 Jan, 2001 2 commits
  11. 15 Jan, 2001 3 commits
  12. 12 Jan, 2001 3 commits
  13. 07 Jan, 2001 1 commit
  14. 05 Jan, 2001 1 commit
  15. 03 Jan, 2001 2 commits
  16. 02 Jan, 2001 1 commit
  17. 31 Dec, 2000 1 commit
  18. 29 Dec, 2000 2 commits
  19. 28 Dec, 2000 1 commit
    • Ryan Bloom's avatar
      Ignore CRLF (or LF) when PEEK'ing at data on the socket. The general · de9c9a7c
      Ryan Bloom authored
      problem is that some browsers send an extra line at the end of a POST
      request.  We use the PEEK method to determine if there is any data left
      on the socket, if there is then we delay sending the response until we
      have enough data to make it worthwhile.  If the browser sends an extra
      blank line, we don't want to delay the response at all.  The only time
      we use the PEEK method is to check for a second request, so this is safe
      to do.
      
      This also solves Joe Orton's problem of specifying a Content- Length
      of 1 for a blank line, and having the server wait to send back a response.
      The problem is that Linux (all Unix really) sends two characters \r\n for
      a blank line, so specifying a C-L of 1 means that the server still sees
      a \n when it PEEKs that the socket data.  That \n can be safely ignored
      however.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87540 13f79535-47bb-0310-9956-ffa450edef68
      de9c9a7c