4 While this document provides an overview of the DBUS-API, a much better reference is the .introspect files
5 in the avahi-daemon directory
7 You can find copies online, under "Developing with Avahi" here
8 http://www.freedesktop.org/Software/Avahi
12 org.freedesktop.Avahi.Server
13 string GetVersionString()
15 string GetHostNameFqdn()
16 string GetDomainName()
18 string GetAlternativeHostName(string name)
19 string GetAlternativeServiceName(string name)
20 string GetNetworkInterfaceNameByIndex(int32 index)
21 int32 GetNetworkInterfaceIndexByName(string name)
22 [int32 interface, int32 protocol, string name, int32 aprotocol, string address] ResolveHostName(int32 interface, int32 protocol, string name, int32 aprotocol)
23 [int32 interface, int32 protocol, int32 aprotocol, string address, string name] ResolveAddress(int32 interface, int32 protocol, string address)
24 [int32 interface, int32 protocol, string name, string type, string domain, string host, int32 aprotocol, string address, uint16 port, byte txt[][]] ResolveService(int32 interface, int32 protocol, string name, string type, string domain, int32 aprotocol)
26 path DomainBrowserNew(int32 interface, int32 protocol, string domain, int32 btype)
27 path ServiceTypeBrowserNew(int32 interface, int32 protocol, string domain)
28 path ServiceBrowserNew(int32 interface, int32 protocol, string type, string domain)
29 path ServiceResolverNew(int32 interface, int32 protocol, string name, string type, string domain, int32 aprotocol)
30 path HostNameResolverNew(int32, int32 protocol, string name, int aprotocol)
31 path AddressResolverNew(int32 interface, int32 protocol, string address)
32 SIGNAL StateChanged(int32 state)
34 org.freedesktop.Avahi.EntryGroup
40 void AddService(int32 interface, int32 protocol, string name, string type, string domain, string host, uint16 port, string txt[])
41 void AddAddress(int32 interface, int32 protocol, string name, string address)
42 SIGNAL StateChanged(int32 state)
44 org.freedesktop.Avahi.DomainBrowser
46 SIGNAL ItemNew(int32 interface, int32 protocol, string domain)
47 SIGNAL ItemRemove(int32 interface, int32 protocol, string domain)
49 org.freedesktop.Avahi.ServiceTypeBrowser
51 SIGNAL ItemNew(int32 interface, int32 protocol, string type, string domain)
52 SIGNAL ItemRemove(int32 interface, int32 protocol, string type, string domain)
54 org.freedesktop.Avahi.ServiceBrowser
56 SIGNAL ItemNew(int32 interface, int32 protocol, string name, string type, string domain)
57 SIGNAL ItemRemove(int32 interface, int32 protocol, string name, string type, string domain)
59 org.freedesktop.Avahi.AddressResolver
61 SIGNAL Found(int32 interface, int32 protocol, int32 aprotocol, string address, string name)
64 org.freedesktop.Avahi.HostNameResolver
66 SIGNAL Found(int32 interface, int32 protocol, string name, int32 aprotocol, string address)
69 org.freedesktop.Avahi.ServiceResolver
71 SIGNAL Found(int32 interface, int32 protocol,string name, string type, string domain, string host, int32 aprotocol, string address, int32 port, byte[][] txt)