ns2 0.2.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ns2/__init__.py +0 -0
- ns2/core.py +0 -0
- ns2/dbus/__init__.py +0 -0
- ns2/dbus/dbus.py +13 -0
- ns2/lib/__init__.py +0 -0
- ns2/lib/accounts.py +130 -0
- ns2/lib/commands.py +32 -0
- ns2/lib/firewalld.py +167 -0
- ns2/lib/introspection/org.fedoraproject.FirewallD1.config.xml +3 -0
- ns2/lib/introspection/org.fedoraproject.FirewallD1.xml +763 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.AccessPoint.xml +106 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.AgentManager.xml +43 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Checkpoint.xml +36 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Connection.Active.xml +185 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP4Config.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP6Config.xml +20 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Adsl.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bluetooth.xml +36 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bond.xml +40 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bridge.xml +41 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Dummy.xml +20 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Generic.xml +27 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Hsr.xml +51 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.IPTunnel.xml +107 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Infiniband.xml +31 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml +38 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Loopback.xml +8 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Lowpan.xml +27 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macsec.xml +109 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macvlan.xml +39 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Modem.xml +62 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OlpcMesh.xml +34 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsBridge.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsInterface.xml +11 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsPort.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ppp.xml +11 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Statistics.xml +35 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Team.xml +48 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Tun.xml +65 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Veth.xml +18 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vlan.xml +45 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vrf.xml +18 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vxlan.xml +139 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WiMax.xml +109 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WifiP2P.xml +76 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WireGuard.xml +38 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wired.xml +53 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wireless.xml +131 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wpan.xml +20 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.xml +407 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.DnsManager.xml +40 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.IP4Config.xml +125 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.IP6Config.xml +95 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.PPP.xml +34 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.SecretAgent.xml +94 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.Connection.xml +224 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.xml +233 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Connection.xml +42 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Plugin.xml +204 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.WiMax.Nsp.xml +35 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.WifiP2PPeer.xml +91 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.xml +598 -0
- ns2/lib/lib.py +0 -0
- ns2/lib/network_delay.py +92 -0
- ns2/lib/networking.py +528 -0
- ns2/lib/ntl.py +188 -0
- ns2/lib/pam_client.py +37 -0
- ns2/lib/ping_data_collector.py +37 -0
- ns2/lib/snmp.py +511 -0
- ns2/lib/socket.py +132 -0
- ns2/lib/socket_client.py +62 -0
- ns2/lib/systemd.py +151 -0
- ns2/lib/test.py +374 -0
- ns2/lib/udp_client.py +227 -0
- ns2/lib/udp_server.py +167 -0
- ns2/snmp/__init__.py +0 -0
- ns2/snmp/ns_dbus_service.py +38 -0
- ns2/snmp/pam_interface.py +19 -0
- ns2/snmp/snmp_interface.py +66 -0
- ns2/ui/__init__.py +0 -0
- ns2/ui/assets/NOVUS_LOGO.svg +105 -0
- ns2/ui/assets/favicon.png +0 -0
- ns2/ui/firewalld_page.py +375 -0
- ns2/ui/fpga_page.py +24 -0
- ns2/ui/login.py +65 -0
- ns2/ui/main.py +200 -0
- ns2/ui/networking_page.py +406 -0
- ns2/ui/ntp.py +105 -0
- ns2/ui/root.py +31 -0
- ns2/ui/snmp_page.py +353 -0
- ns2/ui/terminal.py +65 -0
- ns2/ui/tests_page.py +116 -0
- ns2/ui/theme.py +25 -0
- ns2/utils.py +5 -0
- ns2-0.2.6.dist-info/METADATA +78 -0
- ns2-0.2.6.dist-info/RECORD +98 -0
- ns2-0.2.6.dist-info/WHEEL +4 -0
- ns2-0.2.6.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,763 @@
|
|
|
1
|
+
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
|
|
2
|
+
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
|
3
|
+
<node name="/org/fedoraproject/FirewallD1">
|
|
4
|
+
<interface name="org.freedesktop.DBus.Introspectable">
|
|
5
|
+
<method name="Introspect">
|
|
6
|
+
<arg direction="out" type="s" />
|
|
7
|
+
</method>
|
|
8
|
+
</interface>
|
|
9
|
+
<interface name="org.freedesktop.DBus.Properties">
|
|
10
|
+
<method name="Get">
|
|
11
|
+
<arg name="interface_name" direction="in" type="s" />
|
|
12
|
+
<arg name="property_name" direction="in" type="s" />
|
|
13
|
+
<arg direction="out" type="v" />
|
|
14
|
+
</method>
|
|
15
|
+
<method name="GetAll">
|
|
16
|
+
<arg name="interface_name" direction="in" type="s" />
|
|
17
|
+
<arg direction="out" type="a{sv}" />
|
|
18
|
+
</method>
|
|
19
|
+
<method name="Set">
|
|
20
|
+
<arg name="interface_name" direction="in" type="s" />
|
|
21
|
+
<arg name="property_name" direction="in" type="s" />
|
|
22
|
+
<arg name="new_value" direction="in" type="v" />
|
|
23
|
+
</method>
|
|
24
|
+
<signal name="PropertiesChanged">
|
|
25
|
+
<arg name="interface_name" direction="out" type="s" />
|
|
26
|
+
<arg name="changed_properties" direction="out" type="a{sv}" />
|
|
27
|
+
<arg name="invalidated_properties" direction="out" type="as" />
|
|
28
|
+
</signal>
|
|
29
|
+
</interface>
|
|
30
|
+
<interface name="org.fedoraproject.FirewallD1">
|
|
31
|
+
<method name="reload" />
|
|
32
|
+
<method name="completeReload" />
|
|
33
|
+
<method name="resetToDefaults" />
|
|
34
|
+
<method name="checkPermanentConfig" />
|
|
35
|
+
<method name="runtimeToPermanent" />
|
|
36
|
+
<method name="enablePanicMode" />
|
|
37
|
+
<method name="disablePanicMode" />
|
|
38
|
+
<method name="queryPanicMode">
|
|
39
|
+
<arg direction="out" type="b" />
|
|
40
|
+
</method>
|
|
41
|
+
<method name="getZoneSettings">
|
|
42
|
+
<arg name="zone" direction="in" type="s" />
|
|
43
|
+
<arg direction="out" type="(sssbsasa(ss)asba(ssss)asasasasa(ss)b)" />
|
|
44
|
+
</method>
|
|
45
|
+
<method name="listServices">
|
|
46
|
+
<arg direction="out" type="as" />
|
|
47
|
+
</method>
|
|
48
|
+
<method name="getServiceSettings">
|
|
49
|
+
<arg name="service" direction="in" type="s" />
|
|
50
|
+
<arg direction="out" type="(sssa(ss)asa{ss}asa(ss))" />
|
|
51
|
+
</method>
|
|
52
|
+
<method name="getServiceSettings2">
|
|
53
|
+
<arg name="service" direction="in" type="s" />
|
|
54
|
+
<arg direction="out" type="a{sv}" />
|
|
55
|
+
</method>
|
|
56
|
+
<method name="listIcmpTypes">
|
|
57
|
+
<arg direction="out" type="as" />
|
|
58
|
+
</method>
|
|
59
|
+
<method name="getIcmpTypeSettings">
|
|
60
|
+
<arg name="icmptype" direction="in" type="s" />
|
|
61
|
+
<arg direction="out" type="(sssas)" />
|
|
62
|
+
</method>
|
|
63
|
+
<method name="getLogDenied">
|
|
64
|
+
<arg direction="out" type="s" />
|
|
65
|
+
</method>
|
|
66
|
+
<method name="setLogDenied">
|
|
67
|
+
<arg name="value" direction="in" type="s" />
|
|
68
|
+
</method>
|
|
69
|
+
<method name="getAutomaticHelpers">
|
|
70
|
+
<arg direction="out" type="s" />
|
|
71
|
+
</method>
|
|
72
|
+
<method name="setAutomaticHelpers">
|
|
73
|
+
<arg name="value" direction="in" type="s" />
|
|
74
|
+
</method>
|
|
75
|
+
<method name="getDefaultZone">
|
|
76
|
+
<arg direction="out" type="s" />
|
|
77
|
+
</method>
|
|
78
|
+
<method name="setDefaultZone">
|
|
79
|
+
<arg name="zone" direction="in" type="s" />
|
|
80
|
+
</method>
|
|
81
|
+
<method name="authorizeAll" />
|
|
82
|
+
<method name="getHelpers">
|
|
83
|
+
<arg direction="out" type="as" />
|
|
84
|
+
</method>
|
|
85
|
+
<method name="getHelperSettings">
|
|
86
|
+
<arg name="helper" direction="in" type="s" />
|
|
87
|
+
<arg direction="out" type="(sssssa(ss))" />
|
|
88
|
+
</method>
|
|
89
|
+
<signal name="Reloaded" />
|
|
90
|
+
<signal name="PanicModeEnabled" />
|
|
91
|
+
<signal name="PanicModeDisabled" />
|
|
92
|
+
<signal name="LogDeniedChanged">
|
|
93
|
+
<arg name="value" direction="out" type="s" />
|
|
94
|
+
</signal>
|
|
95
|
+
<signal name="AutomaticHelpersChanged">
|
|
96
|
+
<arg name="value" direction="out" type="s" />
|
|
97
|
+
</signal>
|
|
98
|
+
<signal name="DefaultZoneChanged">
|
|
99
|
+
<arg name="zone" direction="out" type="s" />
|
|
100
|
+
</signal>
|
|
101
|
+
<property name="version" type="s" access="read" />
|
|
102
|
+
<property name="interface_version" type="s" access="read" />
|
|
103
|
+
<property name="state" type="s" access="read" />
|
|
104
|
+
<property name="IPv4" type="b" access="read" />
|
|
105
|
+
<property name="IPv6" type="b" access="read" />
|
|
106
|
+
<property name="IPv6_rpfilter" type="b" access="read" />
|
|
107
|
+
<property name="BRIDGE" type="b" access="read" />
|
|
108
|
+
<property name="IPSet" type="b" access="read" />
|
|
109
|
+
<property name="IPSetTypes" type="as" access="read" />
|
|
110
|
+
<property name="nf_conntrack_helper_setting" type="b" access="read" />
|
|
111
|
+
<property name="nf_conntrack_helpers" type="a{sas}" access="read" />
|
|
112
|
+
<property name="nf_nat_helpers" type="a{sas}" access="read" />
|
|
113
|
+
<property name="IPv4ICMPTypes" type="as" access="read" />
|
|
114
|
+
<property name="IPv6ICMPTypes" type="as" access="read" />
|
|
115
|
+
</interface>
|
|
116
|
+
<interface name="org.fedoraproject.FirewallD1.policies">
|
|
117
|
+
<method name="enableLockdown" />
|
|
118
|
+
<method name="disableLockdown" />
|
|
119
|
+
<method name="queryLockdown">
|
|
120
|
+
<arg direction="out" type="b" />
|
|
121
|
+
</method>
|
|
122
|
+
<method name="addLockdownWhitelistCommand">
|
|
123
|
+
<arg name="command" direction="in" type="s" />
|
|
124
|
+
</method>
|
|
125
|
+
<method name="removeLockdownWhitelistCommand">
|
|
126
|
+
<arg name="command" direction="in" type="s" />
|
|
127
|
+
</method>
|
|
128
|
+
<method name="queryLockdownWhitelistCommand">
|
|
129
|
+
<arg name="command" direction="in" type="s" />
|
|
130
|
+
<arg direction="out" type="b" />
|
|
131
|
+
</method>
|
|
132
|
+
<method name="getLockdownWhitelistCommands">
|
|
133
|
+
<arg direction="out" type="as" />
|
|
134
|
+
</method>
|
|
135
|
+
<method name="addLockdownWhitelistUid">
|
|
136
|
+
<arg name="uid" direction="in" type="i" />
|
|
137
|
+
</method>
|
|
138
|
+
<method name="removeLockdownWhitelistUid">
|
|
139
|
+
<arg name="uid" direction="in" type="i" />
|
|
140
|
+
</method>
|
|
141
|
+
<method name="queryLockdownWhitelistUid">
|
|
142
|
+
<arg name="uid" direction="in" type="i" />
|
|
143
|
+
<arg direction="out" type="b" />
|
|
144
|
+
</method>
|
|
145
|
+
<method name="getLockdownWhitelistUids">
|
|
146
|
+
<arg direction="out" type="ai" />
|
|
147
|
+
</method>
|
|
148
|
+
<method name="addLockdownWhitelistUser">
|
|
149
|
+
<arg name="user" direction="in" type="s" />
|
|
150
|
+
</method>
|
|
151
|
+
<method name="removeLockdownWhitelistUser">
|
|
152
|
+
<arg name="user" direction="in" type="s" />
|
|
153
|
+
</method>
|
|
154
|
+
<method name="queryLockdownWhitelistUser">
|
|
155
|
+
<arg name="user" direction="in" type="s" />
|
|
156
|
+
<arg direction="out" type="b" />
|
|
157
|
+
</method>
|
|
158
|
+
<method name="getLockdownWhitelistUsers">
|
|
159
|
+
<arg direction="out" type="as" />
|
|
160
|
+
</method>
|
|
161
|
+
<method name="addLockdownWhitelistContext">
|
|
162
|
+
<arg name="context" direction="in" type="s" />
|
|
163
|
+
</method>
|
|
164
|
+
<method name="removeLockdownWhitelistContext">
|
|
165
|
+
<arg name="context" direction="in" type="s" />
|
|
166
|
+
</method>
|
|
167
|
+
<method name="queryLockdownWhitelistContext">
|
|
168
|
+
<arg name="context" direction="in" type="s" />
|
|
169
|
+
<arg direction="out" type="b" />
|
|
170
|
+
</method>
|
|
171
|
+
<method name="getLockdownWhitelistContexts">
|
|
172
|
+
<arg direction="out" type="as" />
|
|
173
|
+
</method>
|
|
174
|
+
<signal name="LockdownEnabled" />
|
|
175
|
+
<signal name="LockdownDisabled" />
|
|
176
|
+
<signal name="LockdownWhitelistCommandAdded">
|
|
177
|
+
<arg name="command" direction="out" type="s" />
|
|
178
|
+
</signal>
|
|
179
|
+
<signal name="LockdownWhitelistCommandRemoved">
|
|
180
|
+
<arg name="command" direction="out" type="s" />
|
|
181
|
+
</signal>
|
|
182
|
+
<signal name="LockdownWhitelistUidAdded">
|
|
183
|
+
<arg name="uid" direction="out" type="i" />
|
|
184
|
+
</signal>
|
|
185
|
+
<signal name="LockdownWhitelistUidRemoved">
|
|
186
|
+
<arg name="uid" direction="out" type="i" />
|
|
187
|
+
</signal>
|
|
188
|
+
<signal name="LockdownWhitelistUserAdded">
|
|
189
|
+
<arg name="user" direction="out" type="s" />
|
|
190
|
+
</signal>
|
|
191
|
+
<signal name="LockdownWhitelistUserRemoved">
|
|
192
|
+
<arg name="user" direction="out" type="s" />
|
|
193
|
+
</signal>
|
|
194
|
+
<signal name="LockdownWhitelistContextAdded">
|
|
195
|
+
<arg name="context" direction="out" type="s" />
|
|
196
|
+
</signal>
|
|
197
|
+
<signal name="LockdownWhitelistContextRemoved">
|
|
198
|
+
<arg name="context" direction="out" type="s" />
|
|
199
|
+
</signal>
|
|
200
|
+
</interface>
|
|
201
|
+
<interface name="org.fedoraproject.FirewallD1.zone">
|
|
202
|
+
<method name="getZoneSettings2">
|
|
203
|
+
<arg name="zone" direction="in" type="s" />
|
|
204
|
+
<arg direction="out" type="a{sv}" />
|
|
205
|
+
</method>
|
|
206
|
+
<method name="setZoneSettings2">
|
|
207
|
+
<arg name="zone" direction="in" type="s" />
|
|
208
|
+
<arg name="settings" direction="in" type="a{sv}" />
|
|
209
|
+
</method>
|
|
210
|
+
<method name="getZones">
|
|
211
|
+
<arg direction="out" type="as" />
|
|
212
|
+
</method>
|
|
213
|
+
<method name="getActiveZones">
|
|
214
|
+
<arg direction="out" type="a{sa{sas}}" />
|
|
215
|
+
</method>
|
|
216
|
+
<method name="getZoneOfInterface">
|
|
217
|
+
<arg name="interface" direction="in" type="s" />
|
|
218
|
+
<arg direction="out" type="s" />
|
|
219
|
+
</method>
|
|
220
|
+
<method name="getZoneOfSource">
|
|
221
|
+
<arg name="source" direction="in" type="s" />
|
|
222
|
+
<arg direction="out" type="s" />
|
|
223
|
+
</method>
|
|
224
|
+
<method name="isImmutable">
|
|
225
|
+
<arg name="zone" direction="in" type="s" />
|
|
226
|
+
<arg direction="out" type="b" />
|
|
227
|
+
</method>
|
|
228
|
+
<method name="addInterface">
|
|
229
|
+
<arg name="zone" direction="in" type="s" />
|
|
230
|
+
<arg name="interface" direction="in" type="s" />
|
|
231
|
+
<arg direction="out" type="s" />
|
|
232
|
+
</method>
|
|
233
|
+
<method name="changeZone">
|
|
234
|
+
<arg name="zone" direction="in" type="s" />
|
|
235
|
+
<arg name="interface" direction="in" type="s" />
|
|
236
|
+
<arg direction="out" type="s" />
|
|
237
|
+
</method>
|
|
238
|
+
<method name="changeZoneOfInterface">
|
|
239
|
+
<arg name="zone" direction="in" type="s" />
|
|
240
|
+
<arg name="interface" direction="in" type="s" />
|
|
241
|
+
<arg direction="out" type="s" />
|
|
242
|
+
</method>
|
|
243
|
+
<method name="removeInterface">
|
|
244
|
+
<arg name="zone" direction="in" type="s" />
|
|
245
|
+
<arg name="interface" direction="in" type="s" />
|
|
246
|
+
<arg direction="out" type="s" />
|
|
247
|
+
</method>
|
|
248
|
+
<method name="queryInterface">
|
|
249
|
+
<arg name="zone" direction="in" type="s" />
|
|
250
|
+
<arg name="interface" direction="in" type="s" />
|
|
251
|
+
<arg direction="out" type="b" />
|
|
252
|
+
</method>
|
|
253
|
+
<method name="getInterfaces">
|
|
254
|
+
<arg name="zone" direction="in" type="s" />
|
|
255
|
+
<arg direction="out" type="as" />
|
|
256
|
+
</method>
|
|
257
|
+
<method name="addSource">
|
|
258
|
+
<arg name="zone" direction="in" type="s" />
|
|
259
|
+
<arg name="source" direction="in" type="s" />
|
|
260
|
+
<arg direction="out" type="s" />
|
|
261
|
+
</method>
|
|
262
|
+
<method name="changeZoneOfSource">
|
|
263
|
+
<arg name="zone" direction="in" type="s" />
|
|
264
|
+
<arg name="source" direction="in" type="s" />
|
|
265
|
+
<arg direction="out" type="s" />
|
|
266
|
+
</method>
|
|
267
|
+
<method name="removeSource">
|
|
268
|
+
<arg name="zone" direction="in" type="s" />
|
|
269
|
+
<arg name="source" direction="in" type="s" />
|
|
270
|
+
<arg direction="out" type="s" />
|
|
271
|
+
</method>
|
|
272
|
+
<method name="querySource">
|
|
273
|
+
<arg name="zone" direction="in" type="s" />
|
|
274
|
+
<arg name="source" direction="in" type="s" />
|
|
275
|
+
<arg direction="out" type="b" />
|
|
276
|
+
</method>
|
|
277
|
+
<method name="getSources">
|
|
278
|
+
<arg name="zone" direction="in" type="s" />
|
|
279
|
+
<arg direction="out" type="as" />
|
|
280
|
+
</method>
|
|
281
|
+
<method name="addRichRule">
|
|
282
|
+
<arg name="zone" direction="in" type="s" />
|
|
283
|
+
<arg name="rule" direction="in" type="s" />
|
|
284
|
+
<arg name="timeout" direction="in" type="i" />
|
|
285
|
+
<arg direction="out" type="s" />
|
|
286
|
+
</method>
|
|
287
|
+
<method name="removeRichRule">
|
|
288
|
+
<arg name="zone" direction="in" type="s" />
|
|
289
|
+
<arg name="rule" direction="in" type="s" />
|
|
290
|
+
<arg direction="out" type="s" />
|
|
291
|
+
</method>
|
|
292
|
+
<method name="queryRichRule">
|
|
293
|
+
<arg name="zone" direction="in" type="s" />
|
|
294
|
+
<arg name="rule" direction="in" type="s" />
|
|
295
|
+
<arg direction="out" type="b" />
|
|
296
|
+
</method>
|
|
297
|
+
<method name="getRichRules">
|
|
298
|
+
<arg name="zone" direction="in" type="s" />
|
|
299
|
+
<arg direction="out" type="as" />
|
|
300
|
+
</method>
|
|
301
|
+
<method name="addService">
|
|
302
|
+
<arg name="zone" direction="in" type="s" />
|
|
303
|
+
<arg name="service" direction="in" type="s" />
|
|
304
|
+
<arg name="timeout" direction="in" type="i" />
|
|
305
|
+
<arg direction="out" type="s" />
|
|
306
|
+
</method>
|
|
307
|
+
<method name="removeService">
|
|
308
|
+
<arg name="zone" direction="in" type="s" />
|
|
309
|
+
<arg name="service" direction="in" type="s" />
|
|
310
|
+
<arg direction="out" type="s" />
|
|
311
|
+
</method>
|
|
312
|
+
<method name="queryService">
|
|
313
|
+
<arg name="zone" direction="in" type="s" />
|
|
314
|
+
<arg name="service" direction="in" type="s" />
|
|
315
|
+
<arg direction="out" type="b" />
|
|
316
|
+
</method>
|
|
317
|
+
<method name="getServices">
|
|
318
|
+
<arg name="zone" direction="in" type="s" />
|
|
319
|
+
<arg direction="out" type="as" />
|
|
320
|
+
</method>
|
|
321
|
+
<method name="addPort">
|
|
322
|
+
<arg name="zone" direction="in" type="s" />
|
|
323
|
+
<arg name="port" direction="in" type="s" />
|
|
324
|
+
<arg name="protocol" direction="in" type="s" />
|
|
325
|
+
<arg name="timeout" direction="in" type="i" />
|
|
326
|
+
<arg direction="out" type="s" />
|
|
327
|
+
</method>
|
|
328
|
+
<method name="removePort">
|
|
329
|
+
<arg name="zone" direction="in" type="s" />
|
|
330
|
+
<arg name="port" direction="in" type="s" />
|
|
331
|
+
<arg name="protocol" direction="in" type="s" />
|
|
332
|
+
<arg direction="out" type="s" />
|
|
333
|
+
</method>
|
|
334
|
+
<method name="queryPort">
|
|
335
|
+
<arg name="zone" direction="in" type="s" />
|
|
336
|
+
<arg name="port" direction="in" type="s" />
|
|
337
|
+
<arg name="protocol" direction="in" type="s" />
|
|
338
|
+
<arg direction="out" type="b" />
|
|
339
|
+
</method>
|
|
340
|
+
<method name="getPorts">
|
|
341
|
+
<arg name="zone" direction="in" type="s" />
|
|
342
|
+
<arg direction="out" type="aas" />
|
|
343
|
+
</method>
|
|
344
|
+
<method name="addProtocol">
|
|
345
|
+
<arg name="zone" direction="in" type="s" />
|
|
346
|
+
<arg name="protocol" direction="in" type="s" />
|
|
347
|
+
<arg name="timeout" direction="in" type="i" />
|
|
348
|
+
<arg direction="out" type="s" />
|
|
349
|
+
</method>
|
|
350
|
+
<method name="removeProtocol">
|
|
351
|
+
<arg name="zone" direction="in" type="s" />
|
|
352
|
+
<arg name="protocol" direction="in" type="s" />
|
|
353
|
+
<arg direction="out" type="s" />
|
|
354
|
+
</method>
|
|
355
|
+
<method name="queryProtocol">
|
|
356
|
+
<arg name="zone" direction="in" type="s" />
|
|
357
|
+
<arg name="protocol" direction="in" type="s" />
|
|
358
|
+
<arg direction="out" type="b" />
|
|
359
|
+
</method>
|
|
360
|
+
<method name="getProtocols">
|
|
361
|
+
<arg name="zone" direction="in" type="s" />
|
|
362
|
+
<arg direction="out" type="as" />
|
|
363
|
+
</method>
|
|
364
|
+
<method name="addSourcePort">
|
|
365
|
+
<arg name="zone" direction="in" type="s" />
|
|
366
|
+
<arg name="port" direction="in" type="s" />
|
|
367
|
+
<arg name="protocol" direction="in" type="s" />
|
|
368
|
+
<arg name="timeout" direction="in" type="i" />
|
|
369
|
+
<arg direction="out" type="s" />
|
|
370
|
+
</method>
|
|
371
|
+
<method name="removeSourcePort">
|
|
372
|
+
<arg name="zone" direction="in" type="s" />
|
|
373
|
+
<arg name="port" direction="in" type="s" />
|
|
374
|
+
<arg name="protocol" direction="in" type="s" />
|
|
375
|
+
<arg direction="out" type="s" />
|
|
376
|
+
</method>
|
|
377
|
+
<method name="querySourcePort">
|
|
378
|
+
<arg name="zone" direction="in" type="s" />
|
|
379
|
+
<arg name="port" direction="in" type="s" />
|
|
380
|
+
<arg name="protocol" direction="in" type="s" />
|
|
381
|
+
<arg direction="out" type="b" />
|
|
382
|
+
</method>
|
|
383
|
+
<method name="getSourcePorts">
|
|
384
|
+
<arg name="zone" direction="in" type="s" />
|
|
385
|
+
<arg direction="out" type="aas" />
|
|
386
|
+
</method>
|
|
387
|
+
<method name="addMasquerade">
|
|
388
|
+
<arg name="zone" direction="in" type="s" />
|
|
389
|
+
<arg name="timeout" direction="in" type="i" />
|
|
390
|
+
<arg direction="out" type="s" />
|
|
391
|
+
</method>
|
|
392
|
+
<method name="removeMasquerade">
|
|
393
|
+
<arg name="zone" direction="in" type="s" />
|
|
394
|
+
<arg direction="out" type="s" />
|
|
395
|
+
</method>
|
|
396
|
+
<method name="queryMasquerade">
|
|
397
|
+
<arg name="zone" direction="in" type="s" />
|
|
398
|
+
<arg direction="out" type="b" />
|
|
399
|
+
</method>
|
|
400
|
+
<method name="addForwardPort">
|
|
401
|
+
<arg name="zone" direction="in" type="s" />
|
|
402
|
+
<arg name="port" direction="in" type="s" />
|
|
403
|
+
<arg name="protocol" direction="in" type="s" />
|
|
404
|
+
<arg name="toport" direction="in" type="s" />
|
|
405
|
+
<arg name="toaddr" direction="in" type="s" />
|
|
406
|
+
<arg name="timeout" direction="in" type="i" />
|
|
407
|
+
<arg direction="out" type="s" />
|
|
408
|
+
</method>
|
|
409
|
+
<method name="removeForwardPort">
|
|
410
|
+
<arg name="zone" direction="in" type="s" />
|
|
411
|
+
<arg name="port" direction="in" type="s" />
|
|
412
|
+
<arg name="protocol" direction="in" type="s" />
|
|
413
|
+
<arg name="toport" direction="in" type="s" />
|
|
414
|
+
<arg name="toaddr" direction="in" type="s" />
|
|
415
|
+
<arg direction="out" type="s" />
|
|
416
|
+
</method>
|
|
417
|
+
<method name="queryForwardPort">
|
|
418
|
+
<arg name="zone" direction="in" type="s" />
|
|
419
|
+
<arg name="port" direction="in" type="s" />
|
|
420
|
+
<arg name="protocol" direction="in" type="s" />
|
|
421
|
+
<arg name="toport" direction="in" type="s" />
|
|
422
|
+
<arg name="toaddr" direction="in" type="s" />
|
|
423
|
+
<arg direction="out" type="b" />
|
|
424
|
+
</method>
|
|
425
|
+
<method name="getForwardPorts">
|
|
426
|
+
<arg name="zone" direction="in" type="s" />
|
|
427
|
+
<arg direction="out" type="aas" />
|
|
428
|
+
</method>
|
|
429
|
+
<method name="addIcmpBlock">
|
|
430
|
+
<arg name="zone" direction="in" type="s" />
|
|
431
|
+
<arg name="icmp" direction="in" type="s" />
|
|
432
|
+
<arg name="timeout" direction="in" type="i" />
|
|
433
|
+
<arg direction="out" type="s" />
|
|
434
|
+
</method>
|
|
435
|
+
<method name="removeIcmpBlock">
|
|
436
|
+
<arg name="zone" direction="in" type="s" />
|
|
437
|
+
<arg name="icmp" direction="in" type="s" />
|
|
438
|
+
<arg direction="out" type="s" />
|
|
439
|
+
</method>
|
|
440
|
+
<method name="queryIcmpBlock">
|
|
441
|
+
<arg name="zone" direction="in" type="s" />
|
|
442
|
+
<arg name="icmp" direction="in" type="s" />
|
|
443
|
+
<arg direction="out" type="b" />
|
|
444
|
+
</method>
|
|
445
|
+
<method name="getIcmpBlocks">
|
|
446
|
+
<arg name="zone" direction="in" type="s" />
|
|
447
|
+
<arg direction="out" type="as" />
|
|
448
|
+
</method>
|
|
449
|
+
<method name="addIcmpBlockInversion">
|
|
450
|
+
<arg name="zone" direction="in" type="s" />
|
|
451
|
+
<arg direction="out" type="s" />
|
|
452
|
+
</method>
|
|
453
|
+
<method name="removeIcmpBlockInversion">
|
|
454
|
+
<arg name="zone" direction="in" type="s" />
|
|
455
|
+
<arg direction="out" type="s" />
|
|
456
|
+
</method>
|
|
457
|
+
<method name="queryIcmpBlockInversion">
|
|
458
|
+
<arg name="zone" direction="in" type="s" />
|
|
459
|
+
<arg direction="out" type="b" />
|
|
460
|
+
</method>
|
|
461
|
+
<signal name="ZoneUpdated">
|
|
462
|
+
<arg name="zone" direction="out" type="s" />
|
|
463
|
+
<arg name="settings" direction="out" type="a{sv}" />
|
|
464
|
+
</signal>
|
|
465
|
+
<signal name="InterfaceAdded">
|
|
466
|
+
<arg name="zone" direction="out" type="s" />
|
|
467
|
+
<arg name="interface" direction="out" type="s" />
|
|
468
|
+
</signal>
|
|
469
|
+
<signal name="ZoneChanged">
|
|
470
|
+
<arg name="zone" direction="out" type="s" />
|
|
471
|
+
<arg name="interface" direction="out" type="s" />
|
|
472
|
+
</signal>
|
|
473
|
+
<signal name="ZoneOfInterfaceChanged">
|
|
474
|
+
<arg name="zone" direction="out" type="s" />
|
|
475
|
+
<arg name="interface" direction="out" type="s" />
|
|
476
|
+
</signal>
|
|
477
|
+
<signal name="InterfaceRemoved">
|
|
478
|
+
<arg name="zone" direction="out" type="s" />
|
|
479
|
+
<arg name="interface" direction="out" type="s" />
|
|
480
|
+
</signal>
|
|
481
|
+
<signal name="SourceAdded">
|
|
482
|
+
<arg name="zone" direction="out" type="s" />
|
|
483
|
+
<arg name="source" direction="out" type="s" />
|
|
484
|
+
</signal>
|
|
485
|
+
<signal name="ZoneOfSourceChanged">
|
|
486
|
+
<arg name="zone" direction="out" type="s" />
|
|
487
|
+
<arg name="source" direction="out" type="s" />
|
|
488
|
+
</signal>
|
|
489
|
+
<signal name="SourceRemoved">
|
|
490
|
+
<arg name="zone" direction="out" type="s" />
|
|
491
|
+
<arg name="source" direction="out" type="s" />
|
|
492
|
+
</signal>
|
|
493
|
+
<signal name="RichRuleAdded">
|
|
494
|
+
<arg name="zone" direction="out" type="s" />
|
|
495
|
+
<arg name="rule" direction="out" type="s" />
|
|
496
|
+
<arg name="timeout" direction="out" type="i" />
|
|
497
|
+
</signal>
|
|
498
|
+
<signal name="RichRuleRemoved">
|
|
499
|
+
<arg name="zone" direction="out" type="s" />
|
|
500
|
+
<arg name="rule" direction="out" type="s" />
|
|
501
|
+
</signal>
|
|
502
|
+
<signal name="ServiceAdded">
|
|
503
|
+
<arg name="zone" direction="out" type="s" />
|
|
504
|
+
<arg name="service" direction="out" type="s" />
|
|
505
|
+
<arg name="timeout" direction="out" type="i" />
|
|
506
|
+
</signal>
|
|
507
|
+
<signal name="ServiceRemoved">
|
|
508
|
+
<arg name="zone" direction="out" type="s" />
|
|
509
|
+
<arg name="service" direction="out" type="s" />
|
|
510
|
+
</signal>
|
|
511
|
+
<signal name="PortAdded">
|
|
512
|
+
<arg name="zone" direction="out" type="s" />
|
|
513
|
+
<arg name="port" direction="out" type="s" />
|
|
514
|
+
<arg name="protocol" direction="out" type="s" />
|
|
515
|
+
<arg name="timeout" direction="out" type="i" />
|
|
516
|
+
</signal>
|
|
517
|
+
<signal name="PortRemoved">
|
|
518
|
+
<arg name="zone" direction="out" type="s" />
|
|
519
|
+
<arg name="port" direction="out" type="s" />
|
|
520
|
+
<arg name="protocol" direction="out" type="s" />
|
|
521
|
+
</signal>
|
|
522
|
+
<signal name="ProtocolAdded">
|
|
523
|
+
<arg name="zone" direction="out" type="s" />
|
|
524
|
+
<arg name="protocol" direction="out" type="s" />
|
|
525
|
+
<arg name="timeout" direction="out" type="i" />
|
|
526
|
+
</signal>
|
|
527
|
+
<signal name="ProtocolRemoved">
|
|
528
|
+
<arg name="zone" direction="out" type="s" />
|
|
529
|
+
<arg name="protocol" direction="out" type="s" />
|
|
530
|
+
</signal>
|
|
531
|
+
<signal name="SourcePortAdded">
|
|
532
|
+
<arg name="zone" direction="out" type="s" />
|
|
533
|
+
<arg name="port" direction="out" type="s" />
|
|
534
|
+
<arg name="protocol" direction="out" type="s" />
|
|
535
|
+
<arg name="timeout" direction="out" type="i" />
|
|
536
|
+
</signal>
|
|
537
|
+
<signal name="SourcePortRemoved">
|
|
538
|
+
<arg name="zone" direction="out" type="s" />
|
|
539
|
+
<arg name="port" direction="out" type="s" />
|
|
540
|
+
<arg name="protocol" direction="out" type="s" />
|
|
541
|
+
</signal>
|
|
542
|
+
<signal name="MasqueradeAdded">
|
|
543
|
+
<arg name="zone" direction="out" type="s" />
|
|
544
|
+
<arg name="timeout" direction="out" type="i" />
|
|
545
|
+
</signal>
|
|
546
|
+
<signal name="MasqueradeRemoved">
|
|
547
|
+
<arg name="zone" direction="out" type="s" />
|
|
548
|
+
</signal>
|
|
549
|
+
<signal name="ForwardPortAdded">
|
|
550
|
+
<arg name="zone" direction="out" type="s" />
|
|
551
|
+
<arg name="port" direction="out" type="s" />
|
|
552
|
+
<arg name="protocol" direction="out" type="s" />
|
|
553
|
+
<arg name="toport" direction="out" type="s" />
|
|
554
|
+
<arg name="toaddr" direction="out" type="s" />
|
|
555
|
+
<arg name="timeout" direction="out" type="i" />
|
|
556
|
+
</signal>
|
|
557
|
+
<signal name="ForwardPortRemoved">
|
|
558
|
+
<arg name="zone" direction="out" type="s" />
|
|
559
|
+
<arg name="port" direction="out" type="s" />
|
|
560
|
+
<arg name="protocol" direction="out" type="s" />
|
|
561
|
+
<arg name="toport" direction="out" type="s" />
|
|
562
|
+
<arg name="toaddr" direction="out" type="s" />
|
|
563
|
+
</signal>
|
|
564
|
+
<signal name="IcmpBlockAdded">
|
|
565
|
+
<arg name="zone" direction="out" type="s" />
|
|
566
|
+
<arg name="icmp" direction="out" type="s" />
|
|
567
|
+
<arg name="timeout" direction="out" type="i" />
|
|
568
|
+
</signal>
|
|
569
|
+
<signal name="IcmpBlockRemoved">
|
|
570
|
+
<arg name="zone" direction="out" type="s" />
|
|
571
|
+
<arg name="icmp" direction="out" type="s" />
|
|
572
|
+
</signal>
|
|
573
|
+
<signal name="IcmpBlockInversionAdded">
|
|
574
|
+
<arg name="zone" direction="out" type="s" />
|
|
575
|
+
</signal>
|
|
576
|
+
<signal name="IcmpBlockInversionRemoved">
|
|
577
|
+
<arg name="zone" direction="out" type="s" />
|
|
578
|
+
</signal>
|
|
579
|
+
</interface>
|
|
580
|
+
<interface name="org.fedoraproject.FirewallD1.policy">
|
|
581
|
+
<method name="getPolicySettings">
|
|
582
|
+
<arg name="policy" direction="in" type="s" />
|
|
583
|
+
<arg direction="out" type="a{sv}" />
|
|
584
|
+
</method>
|
|
585
|
+
<method name="setPolicySettings">
|
|
586
|
+
<arg name="policy" direction="in" type="s" />
|
|
587
|
+
<arg name="settings" direction="in" type="a{sv}" />
|
|
588
|
+
</method>
|
|
589
|
+
<method name="getPolicies">
|
|
590
|
+
<arg direction="out" type="as" />
|
|
591
|
+
</method>
|
|
592
|
+
<method name="getActivePolicies">
|
|
593
|
+
<arg direction="out" type="a{sa{sas}}" />
|
|
594
|
+
</method>
|
|
595
|
+
<signal name="PolicyUpdated">
|
|
596
|
+
<arg name="policy" direction="out" type="s" />
|
|
597
|
+
<arg name="settings" direction="out" type="a{sv}" />
|
|
598
|
+
</signal>
|
|
599
|
+
</interface>
|
|
600
|
+
<interface name="org.fedoraproject.FirewallD1.direct">
|
|
601
|
+
<method name="addChain">
|
|
602
|
+
<arg name="ipv" direction="in" type="s" />
|
|
603
|
+
<arg name="table" direction="in" type="s" />
|
|
604
|
+
<arg name="chain" direction="in" type="s" />
|
|
605
|
+
</method>
|
|
606
|
+
<method name="removeChain">
|
|
607
|
+
<arg name="ipv" direction="in" type="s" />
|
|
608
|
+
<arg name="table" direction="in" type="s" />
|
|
609
|
+
<arg name="chain" direction="in" type="s" />
|
|
610
|
+
</method>
|
|
611
|
+
<method name="queryChain">
|
|
612
|
+
<arg name="ipv" direction="in" type="s" />
|
|
613
|
+
<arg name="table" direction="in" type="s" />
|
|
614
|
+
<arg name="chain" direction="in" type="s" />
|
|
615
|
+
<arg direction="out" type="b" />
|
|
616
|
+
</method>
|
|
617
|
+
<method name="getChains">
|
|
618
|
+
<arg name="ipv" direction="in" type="s" />
|
|
619
|
+
<arg name="table" direction="in" type="s" />
|
|
620
|
+
<arg direction="out" type="as" />
|
|
621
|
+
</method>
|
|
622
|
+
<method name="getAllChains">
|
|
623
|
+
<arg direction="out" type="a(sss)" />
|
|
624
|
+
</method>
|
|
625
|
+
<method name="addRule">
|
|
626
|
+
<arg name="ipv" direction="in" type="s" />
|
|
627
|
+
<arg name="table" direction="in" type="s" />
|
|
628
|
+
<arg name="chain" direction="in" type="s" />
|
|
629
|
+
<arg name="priority" direction="in" type="i" />
|
|
630
|
+
<arg name="args" direction="in" type="as" />
|
|
631
|
+
</method>
|
|
632
|
+
<method name="removeRule">
|
|
633
|
+
<arg name="ipv" direction="in" type="s" />
|
|
634
|
+
<arg name="table" direction="in" type="s" />
|
|
635
|
+
<arg name="chain" direction="in" type="s" />
|
|
636
|
+
<arg name="priority" direction="in" type="i" />
|
|
637
|
+
<arg name="args" direction="in" type="as" />
|
|
638
|
+
</method>
|
|
639
|
+
<method name="removeRules">
|
|
640
|
+
<arg name="ipv" direction="in" type="s" />
|
|
641
|
+
<arg name="table" direction="in" type="s" />
|
|
642
|
+
<arg name="chain" direction="in" type="s" />
|
|
643
|
+
</method>
|
|
644
|
+
<method name="queryRule">
|
|
645
|
+
<arg name="ipv" direction="in" type="s" />
|
|
646
|
+
<arg name="table" direction="in" type="s" />
|
|
647
|
+
<arg name="chain" direction="in" type="s" />
|
|
648
|
+
<arg name="priority" direction="in" type="i" />
|
|
649
|
+
<arg name="args" direction="in" type="as" />
|
|
650
|
+
<arg direction="out" type="b" />
|
|
651
|
+
</method>
|
|
652
|
+
<method name="getRules">
|
|
653
|
+
<arg name="ipv" direction="in" type="s" />
|
|
654
|
+
<arg name="table" direction="in" type="s" />
|
|
655
|
+
<arg name="chain" direction="in" type="s" />
|
|
656
|
+
<arg direction="out" type="a(ias)" />
|
|
657
|
+
</method>
|
|
658
|
+
<method name="getAllRules">
|
|
659
|
+
<arg direction="out" type="a(sssias)" />
|
|
660
|
+
</method>
|
|
661
|
+
<method name="passthrough">
|
|
662
|
+
<arg name="ipv" direction="in" type="s" />
|
|
663
|
+
<arg name="args" direction="in" type="as" />
|
|
664
|
+
<arg direction="out" type="s" />
|
|
665
|
+
</method>
|
|
666
|
+
<method name="addPassthrough">
|
|
667
|
+
<arg name="ipv" direction="in" type="s" />
|
|
668
|
+
<arg name="args" direction="in" type="as" />
|
|
669
|
+
</method>
|
|
670
|
+
<method name="removePassthrough">
|
|
671
|
+
<arg name="ipv" direction="in" type="s" />
|
|
672
|
+
<arg name="args" direction="in" type="as" />
|
|
673
|
+
</method>
|
|
674
|
+
<method name="queryPassthrough">
|
|
675
|
+
<arg name="ipv" direction="in" type="s" />
|
|
676
|
+
<arg name="args" direction="in" type="as" />
|
|
677
|
+
<arg direction="out" type="b" />
|
|
678
|
+
</method>
|
|
679
|
+
<method name="getAllPassthroughs">
|
|
680
|
+
<arg direction="out" type="a(sas)" />
|
|
681
|
+
</method>
|
|
682
|
+
<method name="removeAllPassthroughs" />
|
|
683
|
+
<method name="getPassthroughs">
|
|
684
|
+
<arg name="ipv" direction="in" type="s" />
|
|
685
|
+
<arg direction="out" type="aas" />
|
|
686
|
+
</method>
|
|
687
|
+
<signal name="ChainAdded">
|
|
688
|
+
<arg name="ipv" direction="out" type="s" />
|
|
689
|
+
<arg name="table" direction="out" type="s" />
|
|
690
|
+
<arg name="chain" direction="out" type="s" />
|
|
691
|
+
</signal>
|
|
692
|
+
<signal name="ChainRemoved">
|
|
693
|
+
<arg name="ipv" direction="out" type="s" />
|
|
694
|
+
<arg name="table" direction="out" type="s" />
|
|
695
|
+
<arg name="chain" direction="out" type="s" />
|
|
696
|
+
</signal>
|
|
697
|
+
<signal name="RuleAdded">
|
|
698
|
+
<arg name="ipv" direction="out" type="s" />
|
|
699
|
+
<arg name="table" direction="out" type="s" />
|
|
700
|
+
<arg name="chain" direction="out" type="s" />
|
|
701
|
+
<arg name="priority" direction="out" type="i" />
|
|
702
|
+
<arg name="args" direction="out" type="as" />
|
|
703
|
+
</signal>
|
|
704
|
+
<signal name="RuleRemoved">
|
|
705
|
+
<arg name="ipv" direction="out" type="s" />
|
|
706
|
+
<arg name="table" direction="out" type="s" />
|
|
707
|
+
<arg name="chain" direction="out" type="s" />
|
|
708
|
+
<arg name="priority" direction="out" type="i" />
|
|
709
|
+
<arg name="args" direction="out" type="as" />
|
|
710
|
+
</signal>
|
|
711
|
+
<signal name="PassthroughAdded">
|
|
712
|
+
<arg name="ipv" direction="out" type="s" />
|
|
713
|
+
<arg name="args" direction="out" type="as" />
|
|
714
|
+
</signal>
|
|
715
|
+
<signal name="PassthroughRemoved">
|
|
716
|
+
<arg name="ipv" direction="out" type="s" />
|
|
717
|
+
<arg name="args" direction="out" type="as" />
|
|
718
|
+
</signal>
|
|
719
|
+
</interface>
|
|
720
|
+
<interface name="org.fedoraproject.FirewallD1.ipset">
|
|
721
|
+
<method name="queryIPSet">
|
|
722
|
+
<arg name="ipset" direction="in" type="s" />
|
|
723
|
+
<arg direction="out" type="b" />
|
|
724
|
+
</method>
|
|
725
|
+
<method name="getIPSets">
|
|
726
|
+
<arg direction="out" type="as" />
|
|
727
|
+
</method>
|
|
728
|
+
<method name="getIPSetSettings">
|
|
729
|
+
<arg name="ipset" direction="in" type="s" />
|
|
730
|
+
<arg direction="out" type="(ssssa{ss}as)" />
|
|
731
|
+
</method>
|
|
732
|
+
<method name="addEntry">
|
|
733
|
+
<arg name="ipset" direction="in" type="s" />
|
|
734
|
+
<arg name="entry" direction="in" type="s" />
|
|
735
|
+
</method>
|
|
736
|
+
<method name="removeEntry">
|
|
737
|
+
<arg name="ipset" direction="in" type="s" />
|
|
738
|
+
<arg name="entry" direction="in" type="s" />
|
|
739
|
+
</method>
|
|
740
|
+
<method name="queryEntry">
|
|
741
|
+
<arg name="ipset" direction="in" type="s" />
|
|
742
|
+
<arg name="entry" direction="in" type="s" />
|
|
743
|
+
<arg direction="out" type="b" />
|
|
744
|
+
</method>
|
|
745
|
+
<method name="getEntries">
|
|
746
|
+
<arg name="ipset" direction="in" type="s" />
|
|
747
|
+
<arg direction="out" type="as" />
|
|
748
|
+
</method>
|
|
749
|
+
<method name="setEntries">
|
|
750
|
+
<arg name="ipset" direction="in" type="s" />
|
|
751
|
+
<arg name="entries" direction="in" type="as" />
|
|
752
|
+
</method>
|
|
753
|
+
<signal name="EntryAdded">
|
|
754
|
+
<arg name="ipset" direction="out" type="s" />
|
|
755
|
+
<arg name="entry" direction="out" type="s" />
|
|
756
|
+
</signal>
|
|
757
|
+
<signal name="EntryRemoved">
|
|
758
|
+
<arg name="ipset" direction="out" type="s" />
|
|
759
|
+
<arg name="entry" direction="out" type="s" />
|
|
760
|
+
</signal>
|
|
761
|
+
</interface>
|
|
762
|
+
<node name="config" />
|
|
763
|
+
</node>
|