1. 29 Jun, 2013 2 commits
  2. 27 Jun, 2013 1 commit
    • Pieter Hintjens's avatar
      Added ZMQ_STREAM socket type · ad779379
      Pieter Hintjens authored
      - designed for TCP clients and servers
      - added HTTP client / server example in tests/test_stream.cpp
      - same as ZMQ_ROUTER + ZMQ_ROUTER_RAW + ZMQ_ROUTER_MANDATORY
      - includes b893ce set ZMQ_IDENTITY on outgoing connect
      - deprecates ZMQ_ROUTER_RAW
      ad779379
  3. 23 Jun, 2013 1 commit
    • Gavin's avatar
      Store identity for raw socket · b893ce25
      Gavin authored
      Identity stored during connect procedure. Can be read using
      zmq_getsockopt and used as the identity frame when sending messages.
      This allows the implementation of a raw socket client.
      b893ce25
  4. 10 Jun, 2013 1 commit
  5. 06 Jun, 2013 1 commit
  6. 05 Jun, 2013 2 commits
  7. 24 May, 2013 1 commit
  8. 23 May, 2013 2 commits
  9. 21 May, 2013 4 commits
  10. 12 Mar, 2013 2 commits
    • Pieter Hintjens's avatar
      Removed pointless comment · 0e77d65f
      Pieter Hintjens authored
      0e77d65f
    • 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
  11. 19 Feb, 2013 1 commit
  12. 11 Dec, 2012 1 commit
  13. 09 Dec, 2012 1 commit
  14. 08 Dec, 2012 1 commit
  15. 09 Nov, 2012 2 commits
  16. 06 Nov, 2012 1 commit
  17. 30 Oct, 2012 1 commit
  18. 29 Oct, 2012 1 commit
    • Hardeep's avatar
      Added support for non-zmq tcp client connections to router socket. · 83387b40
      Hardeep authored
          - Created a new option ZMQ_ROUTER_RAW_SOCK
          - Added new raw_encoder and raw_decoder to receive and send messages in raw form to remote client
          - Added test case file tests/test_raw_sock.cpp
      
          o To create a raw router sock set the ZMQ_ROUTER_RAW_SOCK option
          o ZMQ_MSGMORE flag is ignored for non-id messages
          o To terminate a remote connection send id message followed by zero length data message
      83387b40
  19. 24 Oct, 2012 1 commit
  20. 19 Oct, 2012 1 commit
  21. 08 Oct, 2012 1 commit
  22. 27 Aug, 2012 1 commit
    • Arthur O'Dwyer's avatar
      Silence all "unused parameter" warnings from Clang. · 3b984d40
      Arthur O'Dwyer authored
      Compiling without warnings is a good goal, because it makes
      new warnings (which probably indicate bugs) stand out rather
      than getting lost in the spam.
      
      My fixes fall into two categories:
      
          - Adding (void) casts of unused parameters, where their
            unusedness seems like a TODO (or in some cases a bug?).
      
          - Removing parameter names altogether, where the function
            is clearly a stub that will never use its parameters.
      
      Should be no change in behavior.
      3b984d40
  23. 11 Aug, 2012 1 commit
  24. 31 Jul, 2012 1 commit
    • Martin Hurton's avatar
      Fix issue #406 · 9fab9937
      Martin Hurton authored
      When a peer reconnects, the router socket receives an identity
      message containing this peer id. When this happens, the current
      implementation crashes.
      
      This patch makes a router socket to silently ignore all identity
      messages coming from reconnected peers.
      9fab9937
  25. 11 Jul, 2012 1 commit
  26. 16 Jun, 2012 1 commit
  27. 27 May, 2012 1 commit
  28. 26 Apr, 2012 1 commit
  29. 03 Apr, 2012 1 commit
  30. 02 Apr, 2012 2 commits
    • Martin Hurton's avatar
      router: always respect message boundaries · 600488fa
      Martin Hurton authored
      The current implementaion of router socket does not
      handle the full pipe and unroutable messages properly.
      Namely, in those cases, the socket could route some
      message parts into a wrong connection.
      600488fa
    • Martin Hurton's avatar
      router: reimplement peer identification · f037290d
      Martin Hurton authored
      The new implementation allows one to send messages through
      a router socket to a peer even before receiving
      messages from this peer.
      
      Fixes issue #304
      f037290d
  31. 28 Mar, 2012 1 commit