mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-04 15:33:19 +00:00
cleanup
This commit is contained in:
parent
a065151c1b
commit
bed0b63bf6
|
@ -55,7 +55,7 @@ tunnel(int tun_fd, int dns_fd)
|
|||
while (running) {
|
||||
if (dnsd_hasack()) {
|
||||
tv.tv_sec = 0;
|
||||
tv.tv_usec = 150000;
|
||||
tv.tv_usec = 50000;
|
||||
} else {
|
||||
tv.tv_sec = 1;
|
||||
tv.tv_usec = 0;
|
||||
|
@ -69,9 +69,8 @@ tunnel(int tun_fd, int dns_fd)
|
|||
i = select(MAX(tun_fd, dns_fd) + 1, &fds, NULL, NULL, &tv);
|
||||
|
||||
if(i < 0) {
|
||||
if (running) {
|
||||
if (running)
|
||||
warn("select");
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue