1. 08 Dec, 2019 1 commit
  2. 18 Jul, 2019 1 commit
  3. 05 Feb, 2019 1 commit
  4. 02 Feb, 2019 4 commits
  5. 01 Feb, 2019 3 commits
  6. 10 Aug, 2018 1 commit
  7. 27 May, 2018 1 commit
  8. 18 May, 2018 1 commit
  9. 02 Feb, 2018 1 commit
  10. 14 May, 2016 1 commit
  11. 18 Feb, 2016 1 commit
  12. 29 Jan, 2016 1 commit
  13. 28 Jan, 2016 1 commit
  14. 22 Jul, 2015 1 commit
  15. 20 Jul, 2015 1 commit
  16. 05 Jul, 2015 1 commit
    • Jens Auer's avatar
      "zero-copy" raw_decoder · 36797936
      Jens Auer authored
      A memcpy is eliminated when receiving data on a ZMQ_STREAM socket. Instead
      of receiving into a static buffer and then copying the data into the
      buffer malloced in msg_t::init_size, the raw_decoder allocates the memory
      for together with the reference-counter and creates a msg_t object
      on top of that memory. This saves the memcpy operation.
      
      For small messages, data is still copied and the receive buffer is reused.
      36797936
  17. 02 Jun, 2015 1 commit
  18. 22 Jan, 2015 1 commit
  19. 02 Jan, 2014 1 commit
  20. 11 Apr, 2013 1 commit
  21. 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
  22. 13 Nov, 2012 1 commit
  23. 30 Oct, 2012 1 commit
  24. 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