1 #ifndef foointernalhfoo
2 #define foointernalhfoo
7 This file is part of avahi.
9 avahi is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as
11 published by the Free Software Foundation; either version 2.1 of the
12 License, or (at your option) any later version.
14 avahi is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17 Public License for more details.
19 You should have received a copy of the GNU Lesser General Public
20 License along with avahi; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25 #include <dbus/dbus.h>
29 const AvahiPoll *poll_api;
32 AvahiClientState state;
34 /* Cache for some seldom changing server data */
35 char *version_string, *host_name, *host_name_fqdn, *domain_name;
36 uint32_t local_service_cookie;
37 int local_service_cookie_valid;
39 AvahiClientCallback callback;
42 AVAHI_LLIST_HEAD(AvahiEntryGroup, groups);
43 AVAHI_LLIST_HEAD(AvahiDomainBrowser, domain_browsers);
44 AVAHI_LLIST_HEAD(AvahiServiceBrowser, service_browsers);
45 AVAHI_LLIST_HEAD(AvahiServiceTypeBrowser, service_type_browsers);
46 AVAHI_LLIST_HEAD(AvahiServiceResolver, service_resolvers);
47 AVAHI_LLIST_HEAD(AvahiHostNameResolver, host_name_resolvers);
48 AVAHI_LLIST_HEAD(AvahiAddressResolver, address_resolvers);
51 struct AvahiEntryGroup {
53 AvahiEntryGroupState state;
55 AvahiEntryGroupCallback callback;
57 AVAHI_LLIST_FIELDS(AvahiEntryGroup, groups);
60 struct AvahiDomainBrowser {
63 AvahiDomainBrowserCallback callback;
65 AVAHI_LLIST_FIELDS(AvahiDomainBrowser, domain_browsers);
68 struct AvahiServiceBrowser {
71 AvahiServiceBrowserCallback callback;
73 AVAHI_LLIST_FIELDS(AvahiServiceBrowser, service_browsers);
76 struct AvahiServiceTypeBrowser {
79 AvahiServiceTypeBrowserCallback callback;
81 AVAHI_LLIST_FIELDS(AvahiServiceTypeBrowser, service_type_browsers);
84 struct AvahiServiceResolver {
87 AvahiServiceResolverCallback callback;
89 AVAHI_LLIST_FIELDS(AvahiServiceResolver, service_resolvers);
92 struct AvahiHostNameResolver {
95 AvahiHostNameResolverCallback callback;
97 AVAHI_LLIST_FIELDS(AvahiHostNameResolver, host_name_resolvers);
100 struct AvahiAddressResolver {
103 AvahiAddressResolverCallback callback;
105 AVAHI_LLIST_FIELDS(AvahiAddressResolver, address_resolvers);
108 int avahi_client_set_errno (AvahiClient *client, int error);
109 int avahi_client_set_dbus_error(AvahiClient *client, DBusError *error);
111 void avahi_entry_group_set_state(AvahiEntryGroup *group, AvahiEntryGroupState state);
113 DBusHandlerResult avahi_domain_browser_event (AvahiClient *client, AvahiBrowserEvent event, DBusMessage *message);
114 DBusHandlerResult avahi_service_type_browser_event (AvahiClient *client, AvahiBrowserEvent event, DBusMessage *message);
115 DBusHandlerResult avahi_service_browser_event (AvahiClient *client, AvahiBrowserEvent event, DBusMessage *message);
117 DBusHandlerResult avahi_service_resolver_event (AvahiClient *client, AvahiResolverEvent event, DBusMessage *message);
118 DBusHandlerResult avahi_host_name_resolver_event (AvahiClient *client, AvahiResolverEvent event, DBusMessage *message);
119 DBusHandlerResult avahi_address_resolver_event (AvahiClient *client, AvahiResolverEvent event, DBusMessage *message);
121 int avahi_client_simple_method_call(AvahiClient *client, const char *path, const char *interface, const char *method);