1. 27 May, 2018 1 commit
  2. 26 May, 2018 1 commit
  3. 17 May, 2018 1 commit
  4. 02 Feb, 2018 1 commit
  5. 18 Feb, 2016 1 commit
  6. 29 Jan, 2016 1 commit
  7. 28 Jan, 2016 1 commit
  8. 19 Oct, 2015 1 commit
  9. 27 Jul, 2015 1 commit
  10. 05 Jul, 2015 3 commits
    • Thomas Köppe's avatar
      [decoder*] Style fixes for consistency · 5b4b8a06
      Thomas Köppe authored
      5b4b8a06
    • Jens Auer's avatar
      - Replaced C-style casts with C++-casts · ef365151
      Jens Auer authored
      - Replaced stdlib.h with cstdlib
      - Made single-argument constructors explicit
      ef365151
    • 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