summaryrefslogtreecommitdiff
path: root/src/ipc_listener.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-07-28 13:46:16 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-07-28 13:46:16 +0200
commit46b053b8d67ba4826302d53268edccf919e6d785 (patch)
tree25e3bd4710a5cfcbe72055a4b03260fb16a06446 /src/ipc_listener.hpp
parent5ac63140b01fed145fa41f613308e134420920ab (diff)
Dead code removed from TCP and IPC transports
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/ipc_listener.hpp')
-rw-r--r--src/ipc_listener.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ipc_listener.hpp b/src/ipc_listener.hpp
index 5d0e1d1..ce1e20d 100644
--- a/src/ipc_listener.hpp
+++ b/src/ipc_listener.hpp
@@ -21,6 +21,10 @@
#ifndef __ZMQ_IPC_LISTENER_HPP_INCLUDED__
#define __ZMQ_IPC_LISTENER_HPP_INCLUDED__
+#include "platform.hpp"
+
+#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
+
#include "fd.hpp"
#include "ip.hpp"
#include "own.hpp"
@@ -39,7 +43,7 @@ namespace zmq
~ipc_listener_t ();
// Set address to listen on.
- int set_address (const char* protocol_, const char *addr_);
+ int set_address (const char *addr_);
private:
@@ -81,3 +85,6 @@ namespace zmq
}
#endif
+
+#endif
+