summaryrefslogtreecommitdiff
path: root/src/ipc_connecter.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-04-24 11:25:26 +0200
committerMartin Sustrik <sustrik@250bpm.com>2012-04-25 17:08:06 +0200
commitd2347c9fdda8d21ede3f91ae8a4873ac04b498aa (patch)
tree8902345479a512c8e6b00847b7a8ec2da7770254 /src/ipc_connecter.hpp
parent94a38c72a7c8803d0947ac86a425152a8b1895ba (diff)
tcp_address_t and ipc_address_t merged into a single class
This patch is a preliminary work for mergine TCP and IPC connecters and listeners. The ultimated goal is to avoid code duplication occuring in these classes. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/ipc_connecter.hpp')
-rw-r--r--src/ipc_connecter.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipc_connecter.hpp b/src/ipc_connecter.hpp
index 84c50fa..2a874bc 100644
--- a/src/ipc_connecter.hpp
+++ b/src/ipc_connecter.hpp
@@ -29,7 +29,7 @@
#include "own.hpp"
#include "stdint.hpp"
#include "io_object.hpp"
-#include "ipc_address.hpp"
+#include "address.hpp"
namespace xs
{
@@ -88,7 +88,7 @@ namespace xs
fd_t connect ();
// Address to connect to.
- ipc_address_t address;
+ address_t address;
// Underlying socket.
fd_t s;