1. 15 Sep, 2013 1 commit
  2. 12 Sep, 2013 4 commits
  3. 31 Aug, 2013 1 commit
    • Shawn J. Goff's avatar
      Change name of icanhasall to subscribe_to_all · 6a18f595
      Shawn J. Goff authored
      icanhasall is cute (for now), but the effect of the variable is clear
      only after tracking down its origin reading the commit. This change is
      intended to make it easier for people to have some intuition about its
      effect from its name.
      6a18f595
  4. 18 Aug, 2013 2 commits
    • Ian Barber's avatar
      Remove delay options · 531d3ebc
      Ian Barber authored
      These were exposed to users, but have subsequently been removed as
      sockopts. They are currently only being used by ZAP, so I've moved it to
      a simpl function call (actually it's only used in one case even in that,
      so there may be a further simplification possible there).
      531d3ebc
    • Ian Barber's avatar
      Attempt to fix disconnect not respecting linger · cb35fd7b
      Ian Barber authored
      Looks like linger is honoured properly, but shutting down the session
      causes the pipe termination to come from that side - because the local
      pipe then shuts down right away it seems to trigger a terminated on the
      other end instead of waiting. This way we trigger the termination from
      the local end and then terminate the session.
      cb35fd7b
  5. 17 Aug, 2013 1 commit
  6. 01 Jul, 2013 1 commit
  7. 29 Jun, 2013 1 commit
  8. 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
  9. 06 Jun, 2013 1 commit
  10. 12 Mar, 2013 2 commits
  11. 08 Mar, 2013 2 commits
  12. 19 Feb, 2013 2 commits
  13. 31 Jan, 2013 2 commits
  14. 02 Jan, 2013 2 commits
  15. 04 Dec, 2012 4 commits
  16. 22 Nov, 2012 1 commit
  17. 21 Nov, 2012 1 commit
  18. 17 Nov, 2012 1 commit
  19. 14 Nov, 2012 1 commit
  20. 09 Nov, 2012 4 commits
  21. 29 Oct, 2012 1 commit
  22. 24 Oct, 2012 1 commit
  23. 18 Oct, 2012 1 commit
  24. 21 Sep, 2012 1 commit
  25. 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