mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 16:19:20 +02:00
compiles on bsd
This commit is contained in:
parent
863dceb4cd
commit
d81d1c8bd7
24
iodine.c
24
iodine.c
|
@ -21,6 +21,7 @@
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
|
@ -120,7 +121,7 @@ handshake(int dns_fd)
|
||||||
|
|
||||||
timeout = 1;
|
timeout = 1;
|
||||||
|
|
||||||
for (i=0;i<5;i++) {
|
for (i=0; running && i<5 ;i++) {
|
||||||
tv.tv_sec = timeout++;
|
tv.tv_sec = timeout++;
|
||||||
tv.tv_usec = 0;
|
tv.tv_usec = 0;
|
||||||
|
|
||||||
|
@ -139,18 +140,17 @@ handshake(int dns_fd)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (read == 0)
|
if (read > 0) {
|
||||||
continue;
|
p = strchr(in, '-');
|
||||||
|
if (p) {
|
||||||
|
*p++ = '\0';
|
||||||
|
mtu = atoi(p);
|
||||||
|
|
||||||
p = strchr(in, '-');
|
if (tun_setip(in) == 0 && tun_setmtu(atoi(p)) == 0)
|
||||||
if (p) {
|
return 0;
|
||||||
*p++ = '\0';
|
else
|
||||||
mtu = atoi(p);
|
warn("Received handshake but b0rk");
|
||||||
|
}
|
||||||
printf("%s %d\n", in, mtu);
|
|
||||||
|
|
||||||
if (tun_setip(in) == 0 && tun_setmtu(atoi(p)) == 0)
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
|
|
Loading…
Reference in New Issue