summaryrefslogtreecommitdiffstats
path: root/libavahi-core/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavahi-core/socket.c')
-rw-r--r--libavahi-core/socket.c25
1 files changed, 22 insertions, 3 deletions
diff --git a/libavahi-core/socket.c b/libavahi-core/socket.c
index 1ef8131..59357ab 100644
--- a/libavahi-core/socket.c
+++ b/libavahi-core/socket.c
@@ -1,3 +1,24 @@
+/* $Id$ */
+
+/***
+ This file is part of avahi.
+
+ avahi is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation; either version 2.1 of the
+ License, or (at your option) any later version.
+
+ avahi is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
+ Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with avahi; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ USA.
+***/
+
#include <inttypes.h>
#include <errno.h>
#include <string.h>
@@ -113,7 +134,7 @@ int avahi_mdns_mcast_leave_ipv6 (int index, int fd)
}
gint avahi_open_socket_ipv4(void) {
- struct sockaddr_in sa, local;
+ struct sockaddr_in local;
int fd = -1, ttl, yes;
if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
@@ -295,7 +316,6 @@ gint avahi_send_dns_packet_ipv4(gint fd, gint interface, AvahiDnsPacket *p) {
struct cmsghdr *cmsg;
struct in_pktinfo *pkti;
uint8_t cmsg_data[sizeof(struct cmsghdr) + sizeof(struct in_pktinfo)];
- int i, n;
g_assert(fd >= 0);
g_assert(p);
@@ -335,7 +355,6 @@ gint avahi_send_dns_packet_ipv6(gint fd, gint interface, AvahiDnsPacket *p) {
struct cmsghdr *cmsg;
struct in6_pktinfo *pkti;
uint8_t cmsg_data[sizeof(struct cmsghdr) + sizeof(struct in6_pktinfo)];
- int i, n;
g_assert(fd >= 0);
g_assert(p);