summaryrefslogtreecommitdiff
path: root/src/ipc_connecter.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-08-18 11:08:22 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-08-18 11:08:22 +0200
commitb01a8e17511b57191c4aec4d741bdf3b3a80efc6 (patch)
treece7b5589954c72cca6652f7babd051b62d12aefb /src/ipc_connecter.hpp
parent3488af048f336867594330d4abd0ad6dab110ea0 (diff)
IPC address related functionality refactored into ipc_address_t class
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/ipc_connecter.hpp')
-rw-r--r--src/ipc_connecter.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ipc_connecter.hpp b/src/ipc_connecter.hpp
index ee57c12..0bb9d69 100644
--- a/src/ipc_connecter.hpp
+++ b/src/ipc_connecter.hpp
@@ -26,10 +26,10 @@
#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
#include "fd.hpp"
-#include "ip.hpp"
#include "own.hpp"
-#include "io_object.hpp"
#include "stdint.hpp"
+#include "io_object.hpp"
+#include "ipc_address.hpp"
namespace zmq
{
@@ -85,8 +85,7 @@ namespace zmq
fd_t connect ();
// Address to connect to.
- sockaddr_storage addr;
- socklen_t addr_len;
+ ipc_address_t address;
// Underlying socket.
fd_t s;