blob: 36307b54c30651a283d1c3c0af010952aad24f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?xml version="1.0" ?>
<node name="/GabbleIMChannel">
<interface name="org.freedesktop.Telepathy.Channel">
<method name="Close"/>
<signal name="Closed"/>
<method name="GetChannelType">
<arg direction="out" type="s"/>
</method>
<method name="GetHandle">
<arg direction="out" type="u"/>
<arg direction="out" type="u"/>
</method>
<method name="GetInterfaces">
<arg direction="out" type="as"/>
</method>
</interface>
<interface name="org.freedesktop.Telepathy.Channel.Type.Text">
<method name="AcknowledgePendingMessages">
<arg direction="in" name="ids" type="au"/>
</method>
<method name="GetMessageTypes">
<arg direction="out" type="au"/>
</method>
<method name="ListPendingMessages">
<arg direction="in" name="clear" type="b"/>
<arg direction="out" type="a(uuuuus)"/>
</method>
<signal name="LostMessage"/>
<signal name="Received">
<arg name="id" type="u"/>
<arg name="timestamp" type="u"/>
<arg name="sender" type="u"/>
<arg name="type" type="u"/>
<arg name="flags" type="u"/>
<arg name="text" type="s"/>
</signal>
<method name="Send">
<arg direction="in" name="type" type="u"/>
<arg direction="in" name="text" type="s"/>
</method>
<signal name="SendError">
<arg name="error" type="u"/>
<arg name="timestamp" type="u"/>
<arg name="type" type="u"/>
<arg name="text" type="s"/>
</signal>
<signal name="Sent">
<arg name="timestamp" type="u"/>
<arg name="type" type="u"/>
<arg name="text" type="s"/>
</signal>
</interface>
</node>
|