Added missing argument to introspection

This commit is contained in:
Ezri Brimhall 2025-10-14 11:49:54 -06:00
parent a1df5ee193
commit 06612f31da
Signed by: ezri
GPG Key ID: 058A78E5680C6F24
2 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class AgentInterface(ServiceInterface, aobject):
self._manager_connected = False
self.manager = bus.get_proxy_object(
"dev.ezri.vpn1", "/dev/ezri/vpn1", manager_introspection_data
).get_interface("dev.ezri.vpn1.Manager")
).get_interface("dev.ezri.vpn1.AgentManager")
dbus = bus.get_proxy_object(
"org.freedesktop.DBus", "/org/freedesktop/DBus", dbus_introspection_data
).get_interface("org.freedesktop.DBus")

View File

@ -37,6 +37,7 @@ node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
<interface name="dev.ezri.vpn1.AgentManager">
<method name="Register">
<arg name="path" type="o" direction="in" />
<arg name="priority" type="i" direction="in" />
</method>
</interface>
<interface name="dev.ezri.vpn1.Manager">