diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-20 02:26:05 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-20 02:31:54 +0200 |
commit | c4e2ceae941d02de5574becbfd3b4db15de2eda3 (patch) | |
tree | c0bda809e0b860f5b0f8e66942dd486c17f2e309 /src/unit.h | |
parent | d06dacd0020af7e31ff6089deff339b00ed979e3 (diff) |
dbus: follow standardized fdo PropertiesChanged signal spec
Diffstat (limited to 'src/unit.h')
-rw-r--r-- | src/unit.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unit.h b/src/unit.h index 993a6cb778..0362602fa1 100644 --- a/src/unit.h +++ b/src/unit.h @@ -334,6 +334,14 @@ struct UnitVTable { /* Type specific cleanups. */ void (*shutdown)(Manager *m); + /* When sending out PropertiesChanged signal, which properties + * shall be invalidated? This is a NUL seperated list of + * strings, to minimize relocations a little. */ + const char *bus_invalidating_properties; + + /* The interface name */ + const char *bus_interface; + /* Can units of this type have multiple names? */ bool no_alias:1; |