1 /* GDBus - GLib D-Bus Library
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: David Zeuthen <davidz@redhat.com>
23 #if !defined (GIO_COMPILATION)
24 #error "gdbusprivate.h is a private header file."
27 #ifndef __G_DBUS_PRIVATE_H__
28 #define __G_DBUS_PRIVATE_H__
30 #include <gio/giotypes.h>
34 /* ---------------------------------------------------------------------------------------------------- */
36 typedef struct GDBusWorker GDBusWorker;
38 typedef void (*GDBusWorkerMessageReceivedCallback) (GDBusWorker *worker,
39 GDBusMessage *message,
42 typedef void (*GDBusWorkerDisconnectedCallback) (GDBusWorker *worker,
43 gboolean remote_peer_vanished,
47 /* This function may be called from any thread - callbacks will be in the shared private message thread
50 GDBusWorker *_g_dbus_worker_new (GIOStream *stream,
51 GDBusCapabilityFlags capabilities,
52 GDBusWorkerMessageReceivedCallback message_received_callback,
53 GDBusWorkerDisconnectedCallback disconnected_callback,
56 /* can be called from any thread - steals blob */
57 void _g_dbus_worker_send_message (GDBusWorker *worker,
58 GDBusMessage *message,
62 /* can be called from any thread */
63 void _g_dbus_worker_stop (GDBusWorker *worker);
65 /* ---------------------------------------------------------------------------------------------------- */
67 void _g_dbus_initialize (void);
68 gboolean _g_dbus_debug_authentication (void);
69 gboolean _g_dbus_debug_message (void);
71 gboolean _g_dbus_address_parse_entry (const gchar *address_entry,
72 gchar **out_transport_name,
73 GHashTable **out_key_value_pairs,
76 GVariantType * _g_dbus_compute_complete_signature (GDBusArgInfo **args);
78 /* ---------------------------------------------------------------------------------------------------- */
81 gchar *_g_dbus_win32_get_user_sid (void);
86 #endif /* __G_DBUS_PRIVATE_H__ */