Skip to content

Commit f674dd3

Browse files
author
Lawrence D'Oliveiro
committed
add definition of libdbus-specific connection-disconnected signal
1 parent 3a7ae2f commit f674dd3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

dbussy.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6273,6 +6273,20 @@ def to_string(obj, indent) :
62736273
),
62746274
],
62756275
),
6276+
DBUS.INTERFACE_LOCAL :
6277+
# note implementation of this is hard-coded inside, and specific to, libdbus
6278+
Introspection.Interface
6279+
(
6280+
name = DBUS.INTERFACE_LOCAL,
6281+
signals =
6282+
[
6283+
Introspection.Interface.Signal(name = "Disconnected"),
6284+
# auto-generated by libdbus with path = DBUS.PATH_LOCAL
6285+
# when connection is closed; cannot be explicitly sent by
6286+
# clients. Documented here:
6287+
# <https://lists.freedesktop.org/archives/dbus/2018-October/017587.html>
6288+
],
6289+
),
62766290
DBUS.INTERFACE_DBUS :
62776291
Introspection.Interface
62786292
(

0 commit comments

Comments
 (0)