mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 14:41:28 +00:00
Change to recv(), stop warning on close
This commit is contained in:
parent
43787fae12
commit
f2b27f868e
4
dns.c
4
dns.c
|
@ -133,10 +133,8 @@ int
|
||||||
dns_read(int fd, char *buf, int len)
|
dns_read(int fd, char *buf, int len)
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
int fromlen;
|
|
||||||
struct sockaddr_in from;
|
|
||||||
|
|
||||||
r = recvfrom(fd, buf, len, 0, (struct sockaddr*)&from, &fromlen);
|
r = recv(fd, buf, len, 0);
|
||||||
if (r < 0) {
|
if (r < 0) {
|
||||||
perror("recvfrom");
|
perror("recvfrom");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue