1. 23 Dec, 2013 1 commit
  2. 22 Dec, 2013 2 commits
  3. 20 Dec, 2013 5 commits
  4. 19 Dec, 2013 4 commits
  5. 17 Dec, 2013 2 commits
  6. 15 Dec, 2013 5 commits
  7. 12 Dec, 2013 3 commits
  8. 11 Dec, 2013 1 commit
  9. 06 Dec, 2013 10 commits
  10. 05 Dec, 2013 3 commits
  11. 04 Dec, 2013 4 commits
    • KIU Shueng Chuan's avatar
      use enum retired_fd instead of -1 · fd8d6d47
      KIU Shueng Chuan authored
      using -1 causes a warning on Windows platform because SOCKET is unsigned.
      fd8d6d47
    • Brandon Carpenter's avatar
      Add IPC accept filter socket options. · 2252322a
      Brandon Carpenter authored
      Adds ZMQ_IPC_ACCEPT_FILTER_{PID,UID,GID} socket options to add processs,
      user, and group IDs to the IPC filter sets. Fixes LIBZMQ-568.
      2252322a
    • Brandon Carpenter's avatar
      Intial IPC accept filter support. · 8662f44e
      Brandon Carpenter authored
      Adds sets of process (Linux only), user, and group IDs for filtering
      connections from peer processes over IPC transport.  If all of the
      filter sets are empty, every connection is accepted.  Otherwise,
      credentials for a connecting process are checked against the filter sets
      and the connection is only accepted if a match is found.
      
      This commit is part of LIBZMQ-568 and only adds the filter sets and
      implements the filter in the IPC accept method.  The interface for
      adding IDs to filter sets are included in a separate commit.
      
      IPC accept filtering is supported only on Linux and OS X.
      8662f44e
    • Shane Hubred's avatar