diff options
author | Havoc Pennington <hp@redhat.com> | 2006-09-16 19:24:08 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2006-09-16 19:24:08 +0000 |
commit | fe4715b656237b89767b5dc0cba4c107541b6e0d (patch) | |
tree | 8defca3126803c37043110e7edb81dfa5476fceb /dbus/dbus-transport-socket.h | |
parent | e001455a0300cc1df17684a028049c8c33e4f575 (diff) |
2006-09-16 Havoc Pennington <hp@redhat.com>
* dbus/dbus-transport.c (_dbus_transport_open): modify to delegate
to _dbus_transport_open_platform_specific,
_dbus_transport_open_socket,
and _dbus_transport_open_debug_pipe
* dbus/dbus-transport-protected.h: add _dbus_transport_open_platform_specific
Diffstat (limited to 'dbus/dbus-transport-socket.h')
-rw-r--r-- | dbus/dbus-transport-socket.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/dbus/dbus-transport-socket.h b/dbus/dbus-transport-socket.h index aab59910..4bb05711 100644 --- a/dbus/dbus-transport-socket.h +++ b/dbus/dbus-transport-socket.h @@ -23,16 +23,20 @@ #ifndef DBUS_TRANSPORT_SOCKET_H #define DBUS_TRANSPORT_SOCKET_H -#include <dbus/dbus-transport.h> +#include <dbus/dbus-transport-protected.h> DBUS_BEGIN_DECLS -DBusTransport* _dbus_transport_new_for_socket (int fd, - const DBusString *server_guid, - const DBusString *address); -DBusTransport* _dbus_transport_new_for_tcp_socket (const char *host, - dbus_int32_t port, - DBusError *error); +DBusTransport* _dbus_transport_new_for_socket (int fd, + const DBusString *server_guid, + const DBusString *address); +DBusTransport* _dbus_transport_new_for_tcp_socket (const char *host, + dbus_int32_t port, + DBusError *error); +DBusTransportOpenResult _dbus_transport_open_socket (DBusAddressEntry *entry, + DBusTransport **transport_p, + DBusError *error); + DBUS_END_DECLS |