1. 09 Oct, 2015 1 commit
  2. 06 Sep, 2015 1 commit
  3. 16 Aug, 2015 1 commit
  4. 05 Jun, 2015 1 commit
  5. 02 Jun, 2015 1 commit
  6. 12 Feb, 2015 2 commits
  7. 22 Jan, 2015 1 commit
  8. 09 Jan, 2015 1 commit
  9. 20 May, 2014 1 commit
  10. 30 Apr, 2014 1 commit
  11. 28 Apr, 2014 1 commit
    • Pieter Hintjens's avatar
      Problem: zmq_socket_monitor code is dirty · 9753de85
      Pieter Hintjens authored
      Specifically:
      
      * zmq_event_t should not be used internally in libzmq, it was
        meant to be an outward facing structure.
      
      * In 4.x, zmq_event_t does not correspond to monitor events, so
        I removed the structure entirely.
      
      * man page for zmq_socket_monitor is incomplete and the example
        code was particularly nasty.
      
      * test_monitor.cpp needed rewriting, it was not clean.
      9753de85
  12. 19 Jan, 2014 2 commits
    • Pieter Hintjens's avatar
      Cleaned up option to force identity on outgoing connection · 50bd28c0
      Pieter Hintjens authored
      - renamed to ZMQ_CONNECT_RID
      - fixed whitespace malformating around previous patch
      - renamamed next_peer_id to next_rid in preparation for
        larger rename of IDENTITY to ROUTING_ID
      
      Note: ZMQ_CONNECT_RID has no test case and no entry in the man
      page, as yet.
      50bd28c0
    • Tim M's avatar
      Fixed compile issue with missing member of socket_base. Changed… · b1920bdf
      Tim M authored
      Fixed compile issue with missing member of socket_base.  Changed ZMQ_NEXT_IDENTITY to ZMQ_NEXT_CONNECT_PEER_ID.
      
      Fixed case where ZMQ_NEXT_CONNECT_PEER_ID is used in ROUTER, and ROUTER does not read the identity message from the connected pipe.
      b1920bdf
  13. 12 Jan, 2014 1 commit
  14. 08 Jan, 2014 1 commit
  15. 07 Jan, 2014 1 commit
  16. 06 Jan, 2014 1 commit
  17. 02 Jan, 2014 1 commit
  18. 31 Aug, 2013 1 commit
    • Shawn J. Goff's avatar
      Change name of icanhasall to subscribe_to_all · 6a18f595
      Shawn J. Goff authored
      icanhasall is cute (for now), but the effect of the variable is clear
      only after tracking down its origin reading the commit. This change is
      intended to make it easier for people to have some intuition about its
      effect from its name.
      6a18f595
  19. 18 Aug, 2013 1 commit
    • Ian Barber's avatar
      Attempt to fix disconnect not respecting linger · cb35fd7b
      Ian Barber authored
      Looks like linger is honoured properly, but shutting down the session
      causes the pipe termination to come from that side - because the local
      pipe then shuts down right away it seems to trigger a terminated on the
      other end instead of waiting. This way we trigger the termination from
      the local end and then terminate the session.
      cb35fd7b
  20. 29 Jun, 2013 1 commit
  21. 06 Jun, 2013 1 commit
  22. 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
  23. 08 Mar, 2013 1 commit
  24. 04 Dec, 2012 1 commit
  25. 21 Nov, 2012 1 commit
  26. 17 Nov, 2012 1 commit
  27. 09 Nov, 2012 2 commits
  28. 18 Oct, 2012 1 commit
  29. 21 Sep, 2012 1 commit
  30. 24 Aug, 2012 1 commit
    • Arthur O'Dwyer's avatar
      Fix monitor_event() to work at all. · 7fadd708
      Arthur O'Dwyer authored
      There are three versions of monitor_event(), all taking
      variadic arguments. The original code just has the first one
      creating a va_list and passing that va_list variadically to
      the second one... which creates a new va_list and passes it
      variadically to the third one... and of course everything
      blows up when we try to pull a non-va_list argument off the
      stack.
      
      The correct approach matches the C standard library's use
      of printf/vprintf, scanf/vscanf, and so on. Once you make
      a va_list, you must pass it only to functions which expect
      a va_list parameter.
      7fadd708
  31. 12 Jun, 2012 2 commits
  32. 04 Jun, 2012 1 commit
    • Ian Barber's avatar
      On the advice of Martin Hurton, removed the new command type and just terminated… · c13f1d52
      Ian Barber authored
      On the advice of Martin Hurton, removed the new command type and just terminated the pipe in a reconnect situation, and notified the socket of the same. This handles the blocking properly, but at the cost of potentially losing in flight messages. However, this is a reasonable trade off given how much simpler it makes the patch.
      c13f1d52
  33. 03 Jun, 2012 1 commit
    • Ian Barber's avatar
      Fix a number of whitespace issues in various parts of the code, add validation… · 6f6466f0
      Ian Barber authored
      Fix a number of whitespace issues in various parts of the code, add validation to most calls on the test and take a first stab at implementing the reconnection pipe blocking.
      
      It didn't seem straightforward to use any of the existing process calls, so I have added a new command to command_t and friends called detach. This instructs the socket_base to remove the pipe from it's pipe list. The session base stores a copy of the outpipe, and will resend the bind command on reconnection. This should allow balancing again.
      6f6466f0
  34. 04 May, 2012 1 commit
  35. 28 Apr, 2012 1 commit
  36. 20 Apr, 2012 1 commit