diff options
author | Ryan Lortie <desrt@desrt.ca> | 2007-09-20 13:04:38 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2007-09-20 13:04:38 -0400 |
commit | f6ec4a80abbfd4e4f4969747c39e625b2689df08 (patch) | |
tree | 1500ff660a14b0ffd1d5f797d42e8fc322e1933c /ChangeLog | |
parent | 8c6b0ab3f7e437362112eeaf83a566475b85d27c (diff) |
Add argument path matching support. Bug #11066.
2007-09-20 Ryan Lortie <desrt@desrt.ca>
* dbus/signals.c (struct DBusMatchRule, bus_match_rule_new,
bus_match_rule_set_arg, bus_match_rule_parse_arg_match,
match_rule_matches): Add support for parsing and matching on
arg0path='/some/path' type rules.
* dbus/signals.h (bus_match_rule_set_arg): change to take const
DBusString instead of const char * for the string to match against.
* dbus/dbus-bus.c: add a quick note to dbus_bus_add_match
documentation about the path matching.
* doc/dbus-specification.xml: add a more detailed description of the
changes here.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,21 @@ +2007-09-20 Ryan Lortie <desrt@desrt.ca> + + Add argument path matching support. Bug #11066. + + * dbus/signals.c (struct DBusMatchRule, bus_match_rule_new, + bus_match_rule_set_arg, bus_match_rule_parse_arg_match, + match_rule_matches): Add support for parsing and matching on + arg0path='/some/path' type rules. + + * dbus/signals.h (bus_match_rule_set_arg): change to take const + DBusString instead of const char * for the string to match against. + + * dbus/dbus-bus.c: add a quick note to dbus_bus_add_match + documentation about the path matching. + + * doc/dbus-specification.xml: add a more detailed description of the + changes here. + 2007-09-19 Ryan Lortie <desrt@desrt.ca> Add support for compacting DBusStrings to release wasted memory. |