diff src/protocols/rendezvous/mdns_cache.h @ 8806:8212661dc3cc

[gaim-migrate @ 9568] I think mDNS records should be caching now... my iBook isn't booting, so I don't really have a way to test it. I need to fix that. I change some stuff from GHashTables to GSLists, I think, which meant changing a lot of code. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 25 Apr 2004 16:23:20 +0000
parents dbbf5470ba05
children beb7be215db3
line wrap: on
line diff
--- a/src/protocols/rendezvous/mdns_cache.h	Sun Apr 25 13:54:49 2004 +0000
+++ b/src/protocols/rendezvous/mdns_cache.h	Sun Apr 25 16:23:20 2004 +0000
@@ -31,12 +31,24 @@
 
 #include "mdns.h"
 
-void mdns_cache_add(ResourceRecord *rr);
+/**
+ *
+ */
+void mdns_cache_add(const ResourceRecord *rr);
 
+/**
+ *
+ */
 void mdns_cache_remove(ResourceRecord *rr);
 
+/**
+ *
+ */
 void mdns_cache_remove_all();
 
-void mdns_cache_respond(int fd, Question *q);
+/**
+ *
+ */
+void mdns_cache_respond(int fd, const Question *q);
 
 #endif /* _MDNS_CACHE_H_ */