1. 11 Apr, 2012 1 commit
    • Martin Hurton's avatar
      Fix issue #335 · cfa6f4bf
      Martin Hurton authored
      The CreateEvent function requests EVENT_ALL_ACCESS access rights
      when the event object already exists. This causes problems
      when the event object is created from a service.
      The solution is to call OpenEvent function when the CreateEvent
      failed due to access control.
      The proper solution would be to use CreateEventEx function, but
      this one is not available on Windows XP.
      cfa6f4bf
  2. 10 Apr, 2012 4 commits
  3. 09 Apr, 2012 2 commits
  4. 06 Apr, 2012 1 commit
  5. 05 Apr, 2012 3 commits
  6. 04 Apr, 2012 4 commits
  7. 03 Apr, 2012 2 commits
  8. 02 Apr, 2012 4 commits
  9. 29 Mar, 2012 4 commits
  10. 28 Mar, 2012 6 commits
  11. 27 Mar, 2012 4 commits
  12. 26 Mar, 2012 4 commits
  13. 25 Mar, 2012 1 commit
    • Martin Hurton's avatar
      Don't set the AI_V4MAPPED flag on FreeBSD · c2e9997a
      Martin Hurton authored
      The problem is that even though the AI_V4MAPPED flag is defined
      on FreeBSD, the getaddrinfo function does not support it and
      returns EAI_BADFLAGS.
      
      The patch also sets the flag on Windows if it is defined there.
      This is true for Windows Vista and later.
      
      Fixes issue #331.
      c2e9997a