summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-08-09 00:32:32 +0000
committerLennart Poettering <lennart@poettering.net>2005-08-09 00:32:32 +0000
commitaa458a0a13d18882354f33c07b0a4e8e82e7a424 (patch)
treefe2798a3f057d2ef9e177a183afec43e973c28a5 /docs
parent707e763398063186c20d8aba3abdef20e3d39253 (diff)
* Update HACKING
* Change DBUS API: txt record lists are now coded as "aay" instead of "as". Unfortunately this triggers this bug: https://bugs.freedesktop.org/show_bug.cgi?id=4023 If you want to use avahi-publish-service you need to apply the included patch. * change avahi-bookmarks to listen on 127.0.0.1 only * add ftp and https browsing support to avahi-bookmarks, but disable it due to python-dbus bugs * update avahi module for python to provide functions to convert between tring lists and lists of lists of bytes * add avahi_strlst_add_anonymous() git-svn-id: file:///home/lennart/svn/public/avahi/trunk@281 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'docs')
-rw-r--r--docs/HACKING11
-rw-r--r--docs/TODO3
2 files changed, 12 insertions, 2 deletions
diff --git a/docs/HACKING b/docs/HACKING
index a31878d..46504da 100644
--- a/docs/HACKING
+++ b/docs/HACKING
@@ -25,6 +25,17 @@ Please comply with the following rules when hacking on Avahi:
* Never forget that Avahi should be buildable without DBUS, GTK or python!
+ * Before commiting, test your code! In case of C consider running it
+ a few times through valgrind, to make sure that you got everything
+ right. You have to call libtool explicitly when running valgrind
+ on binaries that depend on shared objects. e.g:
+
+ libtool --mode=execute valgrind ./avahi-daemon
+
+ Please note that valgrind can't find you all bugs. Please check
+ your code thrice with your brain before committing. Valgrind is
+ only a final check.
+
* When you code in C, please compile with the following gcc options from time
to time:
diff --git a/docs/TODO b/docs/TODO
index ba9a14a..5ce60ce 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -1,6 +1,4 @@
todo:
-* finish DBUS stuff:
- - allow NUL bytes in TXT records
* release!
later:
@@ -49,3 +47,4 @@ done:
* drop trailing dot on avahi_normalize_name()
* add entry_group::reset()
* add internal error codes
+* finish DBUS stuff: allow NUL bytes in TXT records