1. 14 Jan, 2016 5 commits
  2. 13 Jan, 2016 3 commits
  3. 05 Jan, 2016 2 commits
  4. 03 Jan, 2016 2 commits
  5. 01 Jan, 2016 2 commits
    • Constantin Rack's avatar
      Merge pull request #1691 from FredTreg/master · c30676fe
      Constantin Rack authored
      Fixed issue #1690 (ZMQ_REQ_RELAXED)
      c30676fe
    • Frederic Tregon's avatar
      Fixed issue #1690 (ZMQ_REQ_RELAXED) · 89417ddb
      Frederic Tregon authored
      When using ZMQ_REQ_RELAXED and a 'send' is executed after another 'send' the
      previous code would terminate the 'reply_pipe' if any.
      This is incorrect as terminating the reply pipe also terminates the send pipe
      as they are the same (a pipe associated with a socket is bidirectional).
      Doing a terminate on the pipe sets an internal flag called out_active to false
      and the pipe can no longer send messages.
      Removing the 'terminate' solves the problem. Removing this call is not an issue
      as the incorrect ordering of messages that could be incurred is taken care of
      by the ZMQ_REQ_CORRELATE option if needed.
      89417ddb
  6. 29 Dec, 2015 2 commits
  7. 21 Dec, 2015 12 commits
  8. 20 Dec, 2015 3 commits
  9. 19 Dec, 2015 1 commit
  10. 18 Dec, 2015 8 commits