1. 02 Feb, 2018 1 commit
  2. 03 May, 2016 1 commit
  3. 25 Apr, 2016 1 commit
  4. 28 Jan, 2016 1 commit
  5. 24 Nov, 2015 1 commit
  6. 23 Nov, 2015 1 commit
  7. 21 Aug, 2015 1 commit
  8. 02 Jun, 2015 1 commit
  9. 22 Jan, 2015 1 commit
  10. 02 Jan, 2014 1 commit
  11. 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
  12. 13 Apr, 2012 1 commit
  13. 01 Nov, 2011 1 commit
  14. 31 Oct, 2011 1 commit
  15. 29 Sep, 2011 1 commit
  16. 08 Jul, 2011 1 commit
  17. 03 Jul, 2011 1 commit
  18. 21 Apr, 2011 1 commit
  19. 24 Mar, 2011 1 commit
  20. 02 Mar, 2011 1 commit
  21. 17 Feb, 2011 1 commit
  22. 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
  23. 30 Oct, 2010 1 commit
  24. 17 Oct, 2010 2 commits
  25. 15 Oct, 2010 1 commit
  26. 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
  27. 26 Sep, 2010 4 commits
  28. 28 Aug, 2010 1 commit
  29. 25 Aug, 2010 1 commit
    • Martin Sustrik's avatar
      WIP: Socket migration between threads, new zmq_close() semantics · 05d90849
      Martin Sustrik authored
      Sockets may now be migrated between OS threads; sockets may not be used by
      more than one thread at any time. To migrate a socket to another thread the
      caller must ensure that a full memory barrier is called before using the
      socket from the target thread.
      
      The new zmq_close() semantics implement the behaviour discussed at:
      
      http://lists.zeromq.org/pipermail/zeromq-dev/2010-July/004244.html
      
      Specifically, zmq_close() is now deterministic and while it still returns
      immediately, it does not discard any data that may still be queued for
      sending. Further, zmq_term() will now block until all outstanding data has
      been sent.
      
      TODO: Many bugs have been introduced, needs testing. Further, SO_LINGER or
      an equivalent mechanism (possibly a configurable timeout to zmq_term())
      needs to be implemented.
      05d90849
  30. 25 May, 2010 1 commit
  31. 05 May, 2010 1 commit
  32. 04 May, 2010 1 commit
  33. 29 Apr, 2010 1 commit
  34. 11 Feb, 2010 2 commits
  35. 05 Jan, 2010 1 commit