1. 12 Mar, 2013 1 commit
    • Pieter Hintjens's avatar
      Removed corporate advertisements from source file headers · f0f16505
      Pieter Hintjens authored
      Copyrights had become ads for Sustrik's corporate sponsors, going against the original
      agreement to share copyrights with the community (that agreement was: one line stating
      iMatix copyright + one reference to AUTHORS file). The proliferation of corporate ads
      is also unfair to the many individual authors. I've removed ALL corporate title from
      the source files so the copyright statements can now be centralized in AUTHORS and
      source files can be properly updated on an annual basis.
      f0f16505
  2. 19 Feb, 2013 1 commit
  3. 15 Feb, 2013 1 commit
  4. 02 Jan, 2013 2 commits
  5. 29 Dec, 2012 1 commit
  6. 27 Dec, 2012 1 commit
  7. 24 Oct, 2012 1 commit
  8. 26 Jul, 2012 2 commits
  9. 12 Jun, 2012 2 commits
  10. 10 Jun, 2012 1 commit
  11. 28 May, 2012 1 commit
  12. 07 May, 2012 1 commit
  13. 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
  14. 14 Mar, 2012 1 commit
    • boris@boressoft.ru's avatar
      Add WinCE support. · 318ba883
      boris@boressoft.ru authored
      * Added two new files: errno.hpp and errno.cpp. They are required to use errno functionality on WM.
      * zmq.cpp, msg.h: removed inclusion of errno.h because it is included in zmq.h that is also included by .cpp.
      * windows.hpp: process.h is included only for desktop builds.
      * thread.cpp: on CE CreateThread is used instead of __beginthreadex
      * socket_base.cpp, clock.cpp: on CE include cmnintrin.h instead on intrin.h
      * signaler.cpp: on Windows should use special macro around event name (for unicode builds)
      * err.hpp: make it include errno.hpp (my file) instead on errno.h when building for CE
      * err.cpp: use FormatMessage when building for CE (because CE does not have ANSI API functions)
      * zmq.h: do not include errno.h whe building for CE
      * libzmq.vcproj: add tro new files
      318ba883
  15. 10 Nov, 2011 1 commit
  16. 01 Nov, 2011 1 commit
  17. 31 Oct, 2011 1 commit
  18. 29 Sep, 2011 1 commit
  19. 02 Sep, 2011 1 commit
  20. 29 Jul, 2011 1 commit
  21. 18 Jul, 2011 2 commits
  22. 03 Jul, 2011 4 commits
  23. 21 Jun, 2011 1 commit
  24. 20 Jun, 2011 1 commit
  25. 19 Jun, 2011 1 commit
  26. 17 Jun, 2011 1 commit
  27. 02 Mar, 2011 1 commit
  28. 06 Nov, 2010 1 commit
  29. 05 Nov, 2010 1 commit
  30. 04 Nov, 2010 1 commit
    • Martin Lucina's avatar
      Automatically resize signalling socket buffer if full · 1b39bcd8
      Martin Lucina authored
      If the socketpair used by signaler_t fills up, this can lead to deadlock.
      This patch provides partial resolution by attempting to resize SO_SNDBUF on
      the writer side, and if that fails we shall at least assert rather than
      hang.
      
      I've also refactored the signaler_t code to make the platform-dependent
      parts clearer and have tested both the MSG_DONTWAIT and standard POSIX path
      in recv.
      
      The Win32 implementation currently does not implement resizing as I'm not
      convinced that it's safe, but it will also assert like other platforms if
      signaler_t::send() cannot succeed.
      
      The OpenVMS implementation has been carried forward but is untested.
      Signed-off-by: 's avatarMartin Lucina <mato@kotelna.sk>
      1b39bcd8
  31. 30 Oct, 2010 1 commit
  32. 08 Oct, 2010 1 commit
    • Martin Lucina's avatar
      Scalability improvements for large amounts of connections · f90c8d95
      Martin Lucina authored
      Add signaler_sndbuf_size option to config.hpp which allows the user to
      increase the size of the send buffer used by the signalling socketpair.
      
      Implement random backoff for reconnection attempts using a primitive
      pseudo-random generation to prevent reconnection storms.
      
      Add wait_before_connect option to config.hpp to allow the user to enable
      random delay even on initial connect. Default is false for low latency.
      Signed-off-by: 's avatarMartin Lucina <mato@kotelna.sk>
      f90c8d95
  33. 08 Sep, 2010 1 commit