diff options
author | Lennart Poettering <lennart@poettering.net> | 2005-07-30 15:33:51 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2005-07-30 15:33:51 +0000 |
commit | 06f913929fb5971d4315af4e5e92ec08f15a1b17 (patch) | |
tree | df8ef10fd1a62be18ef9fb95d8c6566d5615a4ab | |
parent | 3c4e0db3a35b851398eac7c598009e42e3ea7843 (diff) |
introspection update
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@200 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r-- | avahi-daemon/Server.introspect | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/avahi-daemon/Server.introspect b/avahi-daemon/Server.introspect index 274c1c8..cff7bae 100644 --- a/avahi-daemon/Server.introspect +++ b/avahi-daemon/Server.introspect @@ -1,11 +1,16 @@ <?xml version="1.0" standalone='no'?><!--*-nxml-*--> <!DOCTYPE node SYSTEM "introspect.dtd"> <node> - + <!-- $Id$ --> - <interface name="org.freedesktop.Avahi.Server"> + <interface name="org.freedesktop.DBus.Introspectable"> + <method name="Introspect"> + <arg name="data" direction="out" type="s"/> + </method> + </interface> + <interface name="org.freedesktop.Avahi.Server"> <method name="GetVersionString"> <arg name="version" type="s" direction="out"/> </method> @@ -31,11 +36,13 @@ <arg name="name" type="s" direction="in"/> <arg name="name" type="s" direction="out"/> </method> + <method name="GetAlternativeServiceName"> <arg name="name" type="s" direction="in"/> <arg name="name" type="s" direction="out"/> </method> + <method name="ResolveHostName"> <arg name="interface" type="i" direction="in"/> <arg name="protocol" type="i" direction="in"/> @@ -82,7 +89,7 @@ </method> <method name="EntryGroupNew"> - <arg name="path" type="o" direction="out"/> + <arg name="path" type="s" direction="out"/> <!-- FIXME --> </method> <method name="DomainBrowserNew"> @@ -91,15 +98,15 @@ <arg name="domain" type="s" direction="in"/> <arg name="btype" type="i" direction="in"/> - <arg name="path" type="o" direction="out"/> + <arg name="path" type="s" direction="out"/> <!-- FIXME --> </method> - + <method name="ServiceTypeBrowserNew"> <arg name="interface" type="i" direction="in"/> <arg name="protocol" type="i" direction="in"/> <arg name="domain" type="s" direction="in"/> - <arg name="path" type="o" direction="out"/> + <arg name="path" type="s" direction="out"/> <!-- FIXME --> </method> <method name="ServiceBrowserNew"> @@ -108,8 +115,9 @@ <arg name="type" type="s" direction="in"/> <arg name="domain" type="s" direction="in"/> - <arg name="path" type="o" direction="out"/> + <arg name="path" type="s" direction="out"/> <!-- FIXME --> </method> </interface> + </node> |