1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-11 21:10:56 +00:00
This commit is contained in:
Julian Kranz 2012-01-26 23:45:13 +01:00 committed by Barak A. Pearlmutter
parent 7c3374bcfb
commit 118e69d8cb

View file

@ -2220,8 +2220,8 @@ write_dns(int fd, struct query *q, char *data, int datalen, char downenc)
inet_ntoa(tempin->sin_addr), q->type, q->name, datalen); inet_ntoa(tempin->sin_addr), q->type, q->name, datalen);
} }
// printf("write_dns()"); printf("write_dns()\n");
// ipv6_print(&q->from.v6) ipv6_print(&q->from.v6.sin6_addr, 44);
sendto(fd, buf, len, 0, (struct sockaddr*)&(q->from.v6), q->fromlen); sendto(fd, buf, len, 0, (struct sockaddr*)&(q->from.v6), q->fromlen);
} }