summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-transport-socket.h
diff options
context:
space:
mode:
authorDaniel P. Berrange <dan@berrange.com>2007-07-25 02:46:52 +0000
committerDaniel P. Berrange <dan@berrange.com>2007-07-25 02:46:52 +0000
commitee71e1ff6033ad1eb2385f11d4f3678259b8397b (patch)
treeed47c0cc3273361474d746d7b1952a10da4e60fc /dbus/dbus-transport-socket.h
parent79d3004e26f490ef37ae0298495ea66f322ce374 (diff)
Switch over to using getaddrinfo for TCP clients & servers to enable IPv6
Diffstat (limited to 'dbus/dbus-transport-socket.h')
-rw-r--r--dbus/dbus-transport-socket.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dbus/dbus-transport-socket.h b/dbus/dbus-transport-socket.h
index 8cfc543c..8a00ab58 100644
--- a/dbus/dbus-transport-socket.h
+++ b/dbus/dbus-transport-socket.h
@@ -31,7 +31,8 @@ DBusTransport* _dbus_transport_new_for_socket (int f
const DBusString *server_guid,
const DBusString *address);
DBusTransport* _dbus_transport_new_for_tcp_socket (const char *host,
- dbus_int32_t port,
+ const char *port,
+ const char *family,
DBusError *error);
DBusTransportOpenResult _dbus_transport_open_socket (DBusAddressEntry *entry,
DBusTransport **transport_p,