Optional autogen.sh flag --enable-kdbus-transport added allowing to compile with...
[platform/upstream/dbus.git] / dbus / dbus-server.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-server.h DBusServer object
3  *
4  * Copyright (C) 2002, 2003  Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23 #if !defined (DBUS_INSIDE_DBUS_H) && !defined (DBUS_COMPILATION)
24 #error "Only <dbus/dbus.h> can be included directly, this file may disappear or change contents."
25 #endif
26
27 #ifndef DBUS_SERVER_H
28 #define DBUS_SERVER_H
29
30 #include <dbus/dbus-errors.h>
31 #include <dbus/dbus-message.h>
32 #include <dbus/dbus-connection.h>
33 #include <dbus/dbus-protocol.h>
34
35 DBUS_BEGIN_DECLS
36
37 /**
38  * @addtogroup DBusServer
39  * @{
40  */
41
42 typedef struct DBusServer DBusServer;
43
44 /** Called when a new connection to the server is available. Must reference and save the new
45  * connection, or close the new connection. Set with dbus_server_set_new_connection_function().
46  */
47 typedef void (* DBusNewConnectionFunction) (DBusServer     *server,
48                                             DBusConnection *new_connection,
49                                             void           *data);
50
51 #ifdef ENABLE_KDBUS_TRANSPORT
52 DBUS_EXPORT
53 DBusServer* dbus_server_init_mini                (char* address);
54 #endif
55
56 DBUS_EXPORT
57 DBusServer* dbus_server_listen           (const char     *address,
58                                           DBusError      *error);
59 DBUS_EXPORT
60 DBusServer* dbus_server_ref              (DBusServer     *server);
61 DBUS_EXPORT
62 void        dbus_server_unref            (DBusServer     *server);
63 DBUS_EXPORT
64 void        dbus_server_disconnect       (DBusServer     *server);
65 DBUS_EXPORT
66 dbus_bool_t dbus_server_get_is_connected (DBusServer     *server);
67 DBUS_EXPORT
68 char*       dbus_server_get_address      (DBusServer     *server);
69 DBUS_EXPORT
70 char*       dbus_server_get_id           (DBusServer     *server);
71 DBUS_EXPORT
72 void        dbus_server_set_new_connection_function (DBusServer                *server,
73                                                      DBusNewConnectionFunction  function,
74                                                      void                      *data,
75                                                      DBusFreeFunction           free_data_function);
76 DBUS_EXPORT
77 dbus_bool_t dbus_server_set_watch_functions         (DBusServer                *server,
78                                                      DBusAddWatchFunction       add_function,
79                                                      DBusRemoveWatchFunction    remove_function,
80                                                      DBusWatchToggledFunction   toggled_function,
81                                                      void                      *data,
82                                                      DBusFreeFunction           free_data_function);
83 DBUS_EXPORT
84 dbus_bool_t dbus_server_set_timeout_functions       (DBusServer                *server,
85                                                      DBusAddTimeoutFunction     add_function,
86                                                      DBusRemoveTimeoutFunction  remove_function,
87                                                      DBusTimeoutToggledFunction toggled_function,
88                                                      void                      *data,
89                                                      DBusFreeFunction           free_data_function);
90 DBUS_EXPORT
91 dbus_bool_t dbus_server_set_auth_mechanisms         (DBusServer                *server,
92                                                      const char               **mechanisms);
93
94 DBUS_EXPORT
95 dbus_bool_t dbus_server_allocate_data_slot (dbus_int32_t     *slot_p);
96 DBUS_EXPORT
97 void        dbus_server_free_data_slot     (dbus_int32_t     *slot_p);
98 DBUS_EXPORT
99 dbus_bool_t dbus_server_set_data           (DBusServer       *server,
100                                             int               slot,
101                                             void             *data,
102                                             DBusFreeFunction  free_data_func);
103 DBUS_EXPORT
104 void*       dbus_server_get_data           (DBusServer       *server,
105                                             int               slot);
106
107 /** @} */
108
109 DBUS_END_DECLS
110
111 #endif /* DBUS_SERVER_H */