]> git.meshlink.io Git - catta/blobdiff - avahi-core/socket.c
* add support to browse for domains in avahi-browse
[catta] / avahi-core / socket.c
index ef421c9f2218ce944cb882d856f3da2f97374db6..c03cc34d6c5aadb04ecd098a6c4644a052fe9bcd 100644 (file)
 #include <errno.h>
 #include <string.h>
 #include <stdio.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
 #include <unistd.h>
 #include <fcntl.h>
 #include <sys/time.h>
-#include <net/if.h>
 #include <sys/ioctl.h>
 #include <assert.h>
 
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <net/if.h>
+#include <sys/uio.h>
+
 #ifdef IP_RECVIF
 #include <net/if_dl.h>
 #endif
@@ -491,10 +494,11 @@ int avahi_send_dns_packet_ipv4(int fd, int interface, AvahiDnsPacket *p, const A
         msg.msg_control = cmsg_data;
         msg.msg_controllen = sizeof(cmsg_data);
     }
+#else
+#ifdef __GNUC__
+#warning "FIXME: We need some code to set the outgoing interface here if IP_PKTINFO is not available"
+#endif
 #endif
-
-    /** FIXME: We need some code to set the outgoing interface here if
-     * IP_PKTINFO is not available */
     
     return sendmsg_loop(fd, &msg, 0);
 }
@@ -678,7 +682,6 @@ AvahiDnsPacket* avahi_recv_dns_packet_ipv6(int fd, struct sockaddr_in6 *ret_sa,
     uint8_t aux[64];
     ssize_t l;
     int ms;
-    
     struct cmsghdr *cmsg;
     int found_ttl = 0, found_iface = 0;