1. 16 Aug, 2015 16 commits
  2. 14 Aug, 2015 8 commits
  3. 13 Aug, 2015 2 commits
  4. 12 Aug, 2015 1 commit
  5. 11 Aug, 2015 9 commits
  6. 07 Aug, 2015 1 commit
  7. 06 Aug, 2015 3 commits
    • KIU Shueng Chuan's avatar
    • Constantin Rack's avatar
      Merge pull request #1511 from sorenh/linger_fix · 84a93d42
      Constantin Rack authored
      Avoid terminating connections prematurely
      84a93d42
    • Soren Hansen's avatar
      Avoid terminating connections prematurely · abc845d1
      Soren Hansen authored
      While sending very large messages (far beyond what fits in a the tcp
      buffer, so it takes multiple sendto system calls for it to finish),
      zmq_close will close the connection regardless of ZMQ_LINGER.
      
      In case no engine is attached, a pipe->check_read() is needed to look
      for the delimiter in the pipe and ultimately trigger the pipe
      termination.
      
      However, if there *is* an engine attached, the check_read() looks ahead
      and finds the delimiter and terminates the connection even though the
      engine might actually still be in the middle of sending a message.
      
      This happens because while the io_thread is still busy sending the data,
      the pipe can get terminated and the io thread ends up being terminated.
      abc845d1