1. 29 Jan, 2014 1 commit
  2. 28 Jan, 2014 10 commits
  3. 26 Jan, 2014 4 commits
  4. 25 Jan, 2014 4 commits
    • Marc Hoersken's avatar
      sockfilt.c: fixed and simplified Windows select function · 49b63cf3
      Marc Hoersken authored
      Since the previous complex select function with initial support for
      non-socket file descriptors, did not actually work correctly for
      Console handles, this change simplifies the whole procedure by using
      an internal waiting thread for the stdin console handle.
      
      The previous implementation made it continuously trigger for the stdin
      handle if it was being redirected to a parent process instead of
      an actual Console input window.
      
      This approach supports actual Console input handles as well as
      anonymous Pipe handles which are used during input redirection.
      
      It depends on the fact that ReadFile supports trying to read zero bytes
      which makes it wait for the handle to become ready for reading.
      49b63cf3
    • Marc Hoersken's avatar
      http_pipe.py: replaced epoll with select to support Windows · f55f8d4c
      Marc Hoersken authored
      Removed Unix-specific functionality in order to support Windows:
      - select.epoll replaced with select.select
      - SocketServer.ForkingMixIn replaced with SocketServer.ForkingMixIn
      - socket.MSG_DONTWAIT replaced with socket.setblocking(False)
      
      Even though epoll has a better performance and improved socket handling
      than select, this change should not affect the actual test case.
      f55f8d4c
    • Dan Fandrich's avatar
      tests: Added missing HTTP proxy keywords · 88b074df
      Dan Fandrich authored
      88b074df
    • Dan Fandrich's avatar
      f5860fd5
  5. 24 Jan, 2014 5 commits
  6. 23 Jan, 2014 2 commits
  7. 22 Jan, 2014 1 commit
  8. 21 Jan, 2014 3 commits
  9. 20 Jan, 2014 6 commits
  10. 19 Jan, 2014 4 commits