while ((sel = select(s, &rfd, NULL, NULL, &time_val)) <= 0) {
res = sendto(s, dns_datagram, data_curlen, flags, (struct sockaddr*) &addr,
sizeof(struct sockaddr_in));
if (res < 0) {
printf("res = %d\nError. Server offline?\n", res);
printf("sel = %d\n", sel); // out 0
}
FD_ZERO(&rfd);
FD_SET(s, &rfd);
}