comparison src/protocols/rendezvous/mdns.c @ 8546:9aa6017da568

[gaim-migrate @ 9288] Might as well have this up to date with the small changes I'd made committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 01 Apr 2004 17:42:12 +0000
parents c3ffec7fab94
children f3b928825a72
comparison
equal deleted inserted replaced
8545:07059ef55c9c 8546:9aa6017da568
32 * XXX - THIS DOESN'T DO BOUNDS CHECKING!!! DON'T USE IT ON AN UNTRUSTED 32 * XXX - THIS DOESN'T DO BOUNDS CHECKING!!! DON'T USE IT ON AN UNTRUSTED
33 * NETWORK UNTIL IT DOES!!! THERE ARE POSSIBLE REMOTE ACCESS VIA BUFFER 33 * NETWORK UNTIL IT DOES!!! THERE ARE POSSIBLE REMOTE ACCESS VIA BUFFER
34 * OVERFLOW SECURITY HOLES!!! 34 * OVERFLOW SECURITY HOLES!!!
35 */ 35 */
36 36
37 #include <errno.h> 37 #include "internal.h"
38 #include <fcntl.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <unistd.h>
42 #include <arpa/inet.h>
43 #include <netinet/in.h>
44 #include <sys/socket.h>
45 #include <sys/types.h>
46
47 #include <glib.h>
48
49 #include "debug.h" 38 #include "debug.h"
50 39
51 #include "mdns.h" 40 #include "mdns.h"
52 #include "util.h" 41 #include "util.h"
53 42