mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-14 04:03:15 +00:00
Merge pull request #35 from JohnAZoidberg/routepath
Define searchpath for route with macro
This commit is contained in:
commit
8e14f18282
|
@ -39,6 +39,10 @@
|
||||||
#define IFCONFIGPATH "PATH=/sbin:/bin "
|
#define IFCONFIGPATH "PATH=/sbin:/bin "
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef ROUTEPATH
|
||||||
|
#define ROUTEPATH "PATH=/sbin:/bin "
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef WINDOWS32
|
#ifdef WINDOWS32
|
||||||
#include "windows.h"
|
#include "windows.h"
|
||||||
#include <winioctl.h>
|
#include <winioctl.h>
|
||||||
|
@ -629,7 +633,7 @@ tun_setip(const char *ip, const char *other_ip, int netbits)
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
snprintf(cmdline, sizeof(cmdline),
|
snprintf(cmdline, sizeof(cmdline),
|
||||||
"/sbin/route add %s/%d %s",
|
ROUTEPATH "route add %s/%d %s",
|
||||||
inet_ntoa(netip), netbits, ip);
|
inet_ntoa(netip), netbits, ip);
|
||||||
}
|
}
|
||||||
fprintf(stderr, "Adding route %s/%d to %s\n", inet_ntoa(netip), netbits, ip);
|
fprintf(stderr, "Adding route %s/%d to %s\n", inet_ntoa(netip), netbits, ip);
|
||||||
|
|
Loading…
Reference in a new issue