mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-06-21 16:28:26 +02:00
Remove duplicate nonce-tcp (service-side) transport on Windows
Turns out this was duplicated too. We can just use the platform-independent version, which uses the same code. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=45896 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Ralf Habacker <ralf.habacker@freenet.de> Tested-by: Ralf Habacker <ralf.habacker@freenet.de>
This commit is contained in:
parent
ad7245627c
commit
df80949d92
1 changed files with 1 additions and 27 deletions
|
|
@ -57,33 +57,7 @@ _dbus_server_listen_platform_specific (DBusAddressEntry *entry,
|
|||
|
||||
method = dbus_address_entry_get_method (entry);
|
||||
|
||||
if (strcmp (method, "nonce-tcp") == 0)
|
||||
{
|
||||
const char *host;
|
||||
const char *port;
|
||||
const char *bind;
|
||||
const char *family;
|
||||
|
||||
host = dbus_address_entry_get_value (entry, "host");
|
||||
bind = dbus_address_entry_get_value (entry, "bind");
|
||||
port = dbus_address_entry_get_value (entry, "port");
|
||||
family = dbus_address_entry_get_value (entry, "family");
|
||||
|
||||
*server_p = _dbus_server_new_for_tcp_socket (host, bind, port,
|
||||
family, error, TRUE);
|
||||
|
||||
if (*server_p)
|
||||
{
|
||||
_DBUS_ASSERT_ERROR_IS_CLEAR(error);
|
||||
return DBUS_SERVER_LISTEN_OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
_DBUS_ASSERT_ERROR_IS_SET(error);
|
||||
return DBUS_SERVER_LISTEN_DID_NOT_CONNECT;
|
||||
}
|
||||
}
|
||||
else if (strcmp (method, "autolaunch") == 0)
|
||||
if (strcmp (method, "autolaunch") == 0)
|
||||
{
|
||||
const char *host = "localhost";
|
||||
const char *bind = "localhost";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue