D-Bus 1.14.10
dbus-server-win.c
1/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2/* dbus-server-win.c Server implementation for WIN network protocols.
3 *
4 * Copyright (C) 2002, 2003, 2004 Red Hat Inc.
5 * Copyright (C) 2007 Ralf Habacker <ralf.habacker@freenet.de>
6 *
7 * Licensed under the Academic Free License version 2.1
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 *
23 */
24
25#include <config.h>
26#include "dbus-internals.h"
27#include "dbus-server-win.h"
28#include "dbus-server-socket.h"
29
49DBusServerListenResult
51 DBusServer **server_p,
52 DBusError *error)
53{
54 const char *method;
55
56 *server_p = NULL;
57
58 method = dbus_address_entry_get_method (entry);
59
60 if (strcmp (method, "autolaunch") == 0)
61 {
62 const char *host = "localhost";
63 const char *bind = "localhost";
64 const char *port = "0";
65 const char *family = "ipv4";
66 const char *scope = dbus_address_entry_get_value (entry, "scope");
67
68 if (_dbus_daemon_is_session_bus_address_published (scope))
69 return DBUS_SERVER_LISTEN_ADDRESS_ALREADY_USED;
70
71 *server_p = _dbus_server_new_for_tcp_socket (host, bind, port,
72 family, error, FALSE);
73 if (*server_p)
74 {
75 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
76 (*server_p)->published_address =
77 _dbus_daemon_publish_session_bus_address ((*server_p)->address, scope);
78 return DBUS_SERVER_LISTEN_OK;
79 }
80 else
81 {
82 // make sure no handle is open
83 _dbus_daemon_unpublish_session_bus_address ();
84 _DBUS_ASSERT_ERROR_IS_SET(error);
85 return DBUS_SERVER_LISTEN_DID_NOT_CONNECT;
86 }
87 }
88 else
89 {
90 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
91 return DBUS_SERVER_LISTEN_NOT_HANDLED;
92 }
93}
94
const char * dbus_address_entry_get_method(DBusAddressEntry *entry)
Returns the method string of an address entry.
Definition: dbus-address.c:230
const char * dbus_address_entry_get_value(DBusAddressEntry *entry, const char *key)
Returns a value from a key of an entry.
Definition: dbus-address.c:247
#define NULL
A null pointer, defined appropriately for C or C++.
#define FALSE
Expands to "0".
DBusServer * _dbus_server_new_for_tcp_socket(const char *host, const char *bind, const char *port, const char *family, DBusError *error, dbus_bool_t use_nonce)
Creates a new server listening on TCP.
DBusServerListenResult _dbus_server_listen_platform_specific(DBusAddressEntry *entry, DBusServer **server_p, DBusError *error)
Tries to interpret the address entry in a platform-specific way, creating a platform-specific server ...
Internals of DBusAddressEntry.
Definition: dbus-address.c:47
Object representing an exception.
Definition: dbus-errors.h:49
Internals of DBusServer object.