From 6fc53eb13073722f6f44d0af869c7ff1eb3f206e Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 31 Jan 2003 00:56:01 +0000 Subject: 2003-01-30 Havoc Pennington * dbus/dbus-server.c (dbus_server_listen): @todo about how we need a better way to report errors here. e.g. "unix address lacks path" or something. also "no such file" when the path doesn't exist, etc. * dbus/dbus-address.c (dbus_address_entries_free): add @todo about leaking list nodes (dbus_parse_address): add @todo about documenting address format, and allowing , and ; to be escaped --- dbus/dbus-address.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'dbus/dbus-address.c') diff --git a/dbus/dbus-address.c b/dbus/dbus-address.c index 5b65f2fd..4c584bc0 100644 --- a/dbus/dbus-address.c +++ b/dbus/dbus-address.c @@ -73,6 +73,8 @@ dbus_address_entry_free (DBusAddressEntry *entry) /** * Frees a #NULL-terminated array of address entries. * + * @todo dbus_address_entry_free() seems to leak list nodes + * * @param entries the array. */ void @@ -157,6 +159,11 @@ dbus_address_entry_get_value (DBusAddressEntry *entry, * * method:key=value,key=value;method:key=value * + * @todo document address format in the specification + * + * @todo need to be able to escape ';' and ',' in the + * key values, and the parsing needs to handle that. + * * @param address the address. * @param entry return location to an array of entries. * @param array_len return location for array length. -- cgit