forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBusWpaInterface.xml
120 lines (95 loc) · 4.07 KB
/
DBusWpaInterface.xml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!--
Copyright (c) 2020 Project CHIP Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
This file is constructed based on the wpa_supplicant D-Bus API exposed by the
wpa_supplicant daemon. The list of methods and properties is available at:
https://w1.fi/wpa_supplicant/devel/dbus.html
Please note that this file is not a complete representation of the
wpa_supplicant D-Bus API, but only includes the methods that are relevant for
the wpa_supplicant integration with the Matter SDK.
-->
<!DOCTYPE node PUBLIC
"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="fi.w1.wpa_supplicant1.Interface">
<method name="Scan">
<arg name="args" type="a{sv}" direction="in" />
</method>
<method name="Disconnect" />
<method name="AddNetwork">
<arg name="args" type="a{sv}" direction="in" />
<arg name="path" type="o" direction="out" />
</method>
<method name="RemoveNetwork">
<arg name="path" type="o" direction="in" />
</method>
<method name="RemoveAllNetworks" />
<method name="SelectNetwork">
<arg name="path" type="o" direction="in" />
</method>
<method name="AddBlob">
<arg name="name" type="s" direction="in" />
<arg name="data" type="ay" direction="in">
<!-- gdbus-codegen maps "ay" to `gchar *` by default, which truncates at NUL bytes -->
<annotation name="org.gtk.GDBus.C.ForceGVariant" value="true"/>
</arg>
</method>
<method name="RemoveBlob">
<arg name="name" type="s" direction="in" />
</method>
<method name="AutoScan">
<arg name="arg" type="s" direction="in" />
</method>
<method name="NANPublish">
<arg name="nan_args" type="s" direction="in" />
<arg name="publish_id" type="i" direction="out" />
</method>
<method name="NANCancelPublish">
<arg name="nan_args" type="s" direction="in" />
</method>
<method name="NANSubscribe">
<arg name="nan_args" type="s" direction="in" />
<arg name="subscribe_id" type="i" direction="out" />
</method>
<method name="NANCancelSubscribe">
<arg name="nan_args" type="s" direction="in" />
</method>
<method name="NANTransmit">
<arg name="nan_args" type="s" direction="in" />
</method>
<method name="SaveConfig" />
<property name="State" type="s" access="read" />
<property name="CurrentBSS" type="o" access="read" />
<property name="CurrentNetwork" type="o" access="read" />
<property name="CurrentAuthMode" type="s" access="read" />
<property name="BSSs" type="ao" access="read" />
<property name="DisconnectReason" type="i" access="read" />
<property name="AuthStatusCode" type="i" access="read" />
<property name="AssocStatusCode" type="i" access="read" />
<signal name="ScanDone">
<arg name="success" type="b" />
</signal>
<signal name="NanDiscoveryresult">
<arg name="result" type="b" />
<arg name="discov_info" type="a{sv}" />
</signal>
<signal name="NanReceive">
<arg name="nanrx" type="a{sv}" />
</signal>
<signal name="NanSubscribeterminated">
<arg name="term_subscribe_id" type="i" />
<arg name="reason" type="i" />
</signal>
</interface>
</node>