summaryrefslogtreecommitdiffstats
path: root/avahi-core/query-sched.c
Commit message (Collapse)AuthorAgeFilesLines
* touch-up of test codepath.federico2Federico Lucifredi2008-01-311-0/+26
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1752 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* resync.Federico Lucifredi2008-01-311-1/+0
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1751 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* debugging.Federico Lucifredi2008-01-311-0/+1
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1750 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* more tracing. Federico Lucifredi2008-01-301-2/+1
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1749 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* tracing, fixes. Nothing glamorous, it's a branch!Federico Lucifredi2008-01-301-3/+4
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1748 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* a bit of tracing code to answer my questions..Federico Lucifredi2008-01-301-2/+4
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1747 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* importing code to append SEC signatures to records, part II.Federico Lucifredi2008-01-281-1/+15
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1745 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* bit of debug code.Federico Lucifredi2008-01-281-1/+2
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1744 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* appending rdata for ZSK::pubkey.Federico Lucifredi2008-01-281-2/+18
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1743 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* fixes.Federico Lucifredi2008-01-281-0/+3
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1742 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* code to append SEC signatures to records, part I.Federico Lucifredi2008-01-281-0/+20
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1741 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* fix build on GNU (closes: #3)Lennart Poettering2006-01-171-0/+2
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1084 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* * Make "NameAcquired" warning line disappear in avahi-clientLennart Poettering2005-11-131-15/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Scheduler tweaks: * Add some more comments * Remove scheduled queries from the query queue if the querier which issued them dies. This reduces traffic immensly when many short lived queries are made, e.g. during host name lookups. * Don't free a querier object immediately when it is no longer referenced. Instead keep it and try to recycle it in case someone else wants to do the same query later on. Free it at the latest moment possible: just before the next query is scheduled to be made. This reduces traffic immensly when many short lived queries are made. With these two changes we can minimize the traffic to zero or near zero for many simple lookups. * When responding records with the FLUSH_CACHE bit set, reply immediately only when all response record have this bit set. Prior to this change we replied imediately as soon as one record hat this bit set. This change should make us pass *all* Bonjour mDNS conformance tests without any exceptions. git-svn-id: file:///home/lennart/svn/public/avahi/trunk@954 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* * avahi-utils: replace python avahi-browse with a version written in C.Lennart Poettering2005-10-261-1/+1
| | | | | | | | | | | * remove -Wunused from GCC command line and use "unused" attribute instead * remove AVAHI_CLIENT_S_FAILURE and AVAHI_CLIENT_S_INVALID since these event's are never forwarded to the client anyway * make use of AVAHI_GCC_NORETURN * really send eror code with StateChange DBUS signals * ignore EINTR in avahi_simple_poll_loop() git-svn-id: file:///home/lennart/svn/public/avahi/trunk@879 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* remove even more bad newlines in log messagesLennart Poettering2005-09-281-1/+1
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/trunk@647 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* * strip glib from avahi-coreLennart Poettering2005-08-131-70/+91
| | | | | | | | | | | | | | * implement glib memory allocator * add new documentation file MALLOC * initialize pseudo-RNG from /dev/urandom in avahi-daemon * remove some gcc 4.0 warnings * beef up watch system with real timeouts * move GCC __attribute__ macros into its own header avahi-common/gccmacro.h * make use of GCC's sentinel attribute where it make sense * add malloc() implementations that abort on OOM and enable them by default git-svn-id: file:///home/lennart/svn/public/avahi/trunk@308 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* implement new main loop abstraction layerLennart Poettering2005-08-121-1/+1
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/trunk@305 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* Split avahi-common/util.h into Lennart Poettering2005-08-121-1/+1
| | | | | | | | | avahi-common/domain.h avahi-core/fdutil.h avahi-core/timeval.h git-svn-id: file:///home/lennart/svn/public/avahi/trunk@299 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* * drop glib from avahi-commonLennart Poettering2005-08-111-5/+5
| | | | | | | * add new module with avahi_malloc() and friends git-svn-id: file:///home/lennart/svn/public/avahi/trunk@298 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* * add logging API and make all code make use of itLennart Poettering2005-06-111-4/+4
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/trunk@112 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* Add support for server state change callbacksLennart Poettering2005-05-201-4/+4
| | | | git-svn-id: file:///home/lennart/svn/public/avahi/trunk@78 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
* * split packet scheduler into three seperate partsLennart Poettering2005-05-171-0/+379
* test against Aplle test suit, most tests pass now * suppress auxiliary records by known answers * handle very large records git-svn-id: file:///home/lennart/svn/public/avahi/trunk@74 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe