1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-04 05:43:33 +03:00

fixed write warning

This commit is contained in:
frekky 2016-12-09 09:27:08 +08:00
parent 2e6a5876d6
commit 458117c14c

View file

@ -1189,10 +1189,13 @@ tunnel_dns()
}
if (datalen) {
if (this.use_remote_forward)
write(STDOUT_FILENO, data, datalen);
else
if (this.use_remote_forward) {
if (write(STDOUT_FILENO, data, datalen) != datalen) {
warn("write_stdout != datalen");
}
} else {
write_tun(this.tun_fd, data, datalen);
}
}
}