1. 01 Nov, 2010 1 commit
  2. 23 Oct, 2010 2 commits
  3. 15 Oct, 2010 6 commits
  4. 14 Oct, 2010 1 commit
  5. 13 Oct, 2010 1 commit
  6. 11 Oct, 2010 2 commits
  7. 09 Oct, 2010 1 commit
    • Martin Sustrik's avatar
      Version macros added · ef8db789
      Martin Sustrik authored
      Macro ZMQ_VERSION represents the current version of 0MQ
      Macro ZMQ_MAKE_VERSION(major,minor,patch) allows to create
      a representation of the specified version.
      The versions can be compared using simple <, >, ==, etc.
      operators.
      Signed-off-by: 's avatarMartin Sustrik <sustrik@250bpm.com>
      ef8db789
  8. 30 Sep, 2010 1 commit
  9. 28 Sep, 2010 2 commits
  10. 26 Sep, 2010 1 commit
  11. 15 Sep, 2010 1 commit
  12. 04 Sep, 2010 20 commits
  13. 02 Sep, 2010 1 commit
    • Jon Dyte's avatar
      Prior to this patch prefix_tree asserts. · 14853c2d
      Jon Dyte authored
      This is because as it adds the 255th element at a node it attempts to calculate
      the count member var which is an unsigned char via count = (255 -0) + 1; and
      pass the result to realloc. Unfortunately the result is zero and realloc returns
      null; the prefix_tree asserts. I have fixed it by making the count an unsigned
      short.
      14853c2d