1. 04 Feb, 2020 1 commit
  2. 30 May, 2018 1 commit
  3. 27 May, 2018 1 commit
  4. 26 May, 2018 1 commit
  5. 02 May, 2018 1 commit
  6. 02 Feb, 2018 1 commit
  7. 10 Oct, 2016 1 commit
  8. 14 May, 2016 1 commit
  9. 28 Jan, 2016 1 commit
  10. 06 Sep, 2015 1 commit
  11. 02 Jun, 2015 1 commit
  12. 22 Jan, 2015 1 commit
  13. 30 Apr, 2014 1 commit
  14. 02 Jan, 2014 1 commit
  15. 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
  16. 31 Jan, 2013 1 commit
  17. 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
  18. 20 Apr, 2012 1 commit
    • Sergey KHripchenko's avatar
      fixes for · 2eb6b32e
      Sergey KHripchenko authored
      make[2]: Entering directory `/home/laotse/src/abs/zeromq-git/src/libzmq-build/src'
        CXX    libzmq_la-address.lo
      address.cpp: In destructor 'zmq::address_t::~address_t()':
      address.cpp:41:29: error: deleting object of polymorphic class type 'zmq::tcp_address_t' which has non-virtual destructor might cause undefined behaviour [-Werror=delete-non-virtual-dtor]
      cc1plus: all warnings being treated as errors
      2eb6b32e
  19. 18 Apr, 2012 1 commit
  20. 13 Apr, 2012 1 commit
  21. 12 Apr, 2012 1 commit
    • Sergey KHripchenko's avatar
      Implement ZMQ_TCP_ACCEPT_FILTER setsockopt() for listening TCP sockets. · acba6bdd
      Sergey KHripchenko authored
      Assign arbitrary number of filters that will be applied for each new TCP transport
      connection on a listening socket.
      If no filters applied, then TCP transport allows connections from any ip.
      If at least one filter is applied then new connection source ip should be matched.
      To clear all filters call zmq_setsockopt(socket, ZMQ_TCP_ACCEPT_FILTER, NULL, 0).
      Filter is a null-terminated string with ipv6 or ipv4 CIDR.
      
      For example:
      localhost
      127.0.0.1
      mail.ru/24
      ::1
      ::1/128
      3ffe:1::
      3ffe:1::/56
      
      Returns -1 if the filter couldn't be assigned(format error or ipv6 filter with ZMQ_IPV4ONLY set)
      
      P.S.
      The only thing that worries me is that I had to re-enable 'default assign by reference constructor/operator'
      for 'tcp_address_t' (and for my inherited class tcp_address_mask_t) to store it in std::vector in 'options_t'...
      acba6bdd
  22. 16 Feb, 2012 1 commit
  23. 01 Nov, 2011 1 commit
  24. 31 Oct, 2011 1 commit
  25. 19 Aug, 2011 1 commit
  26. 18 Aug, 2011 2 commits