diff src/protocols/rendezvous/mdns.h @ 8838:518455386538

[gaim-migrate @ 9604] -Fix the compile error in perl that was my fault -Rename a network.c function and change it's signature (is that work applicable in c?) -Make rendezvous crash when trying to sign on committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 28 Apr 2004 03:16:40 +0000
parents beb7be215db3
children 913ec44675c3
line wrap: on
line diff
--- a/src/protocols/rendezvous/mdns.h	Wed Apr 28 03:10:31 2004 +0000
+++ b/src/protocols/rendezvous/mdns.h	Wed Apr 28 03:16:40 2004 +0000
@@ -166,11 +166,11 @@
 int mdns_query(int fd, const char *domain, unsigned short type);
 
 int mdns_send_rr(int fd, ResourceRecord *rr);
-int mdns_advertise_a(int fd, const char *name, unsigned char *ip);
+int mdns_advertise_a(int fd, const char *name, const unsigned char *ip);
 int mdns_advertise_null(int fd, const char *name, const char *data, unsigned short rdlength);
 int mdns_advertise_ptr(int fd, const char *name, const char *domain);
 int mdns_advertise_txt(int fd, const char *name, const GSList *txt);
-int mdns_advertise_aaaa(int fd, const char *name, unsigned char *ip);
+int mdns_advertise_aaaa(int fd, const char *name, const unsigned char *ip);
 int mdns_advertise_srv(int fd, const char *name, unsigned short port, const char *target);
 
 /**