Fix tests on *BSD.
This commit is contained in:
parent
db80dbbac9
commit
a144147319
4 changed files with 33 additions and 36 deletions
|
@ -104,13 +104,6 @@ void ifconfig_address(FILE *out, const char *value) {
|
||||||
case SUBNET_IPV6: fprintf(out, "ip addr replace %s dev \"$INTERFACE\"\n", address_str); break;
|
case SUBNET_IPV6: fprintf(out, "ip addr replace %s dev \"$INTERFACE\"\n", address_str); break;
|
||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
#elif defined(HAVE_BSD)
|
|
||||||
switch(address.type) {
|
|
||||||
case SUBNET_MAC: fprintf(out, "ifconfig \"$INTERFACE\" link %s\n", address_str); break;
|
|
||||||
case SUBNET_IPV4: fprintf(out, "ifconfig \"$INTERFACE\" %s\n", address_str); break;
|
|
||||||
case SUBNET_IPV6: fprintf(out, "ifconfig \"$INTERFACE\" inet6 %s\n", address_str); break;
|
|
||||||
default: return;
|
|
||||||
}
|
|
||||||
#elif defined(HAVE_MINGW) || defined(HAVE_CYGWIN)
|
#elif defined(HAVE_MINGW) || defined(HAVE_CYGWIN)
|
||||||
switch(address.type) {
|
switch(address.type) {
|
||||||
case SUBNET_MAC: fprintf(out, "ip link set \"$INTERFACE\" address %s\n", address_str); break;
|
case SUBNET_MAC: fprintf(out, "ip link set \"$INTERFACE\" address %s\n", address_str); break;
|
||||||
|
@ -118,6 +111,13 @@ void ifconfig_address(FILE *out, const char *value) {
|
||||||
case SUBNET_IPV6: fprintf(out, "netsh inetface ipv6 set address \"$INTERFACE\" static %s\n", address_str); break;
|
case SUBNET_IPV6: fprintf(out, "netsh inetface ipv6 set address \"$INTERFACE\" static %s\n", address_str); break;
|
||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
|
#else // assume BSD
|
||||||
|
switch(address.type) {
|
||||||
|
case SUBNET_MAC: fprintf(out, "ifconfig \"$INTERFACE\" link %s\n", address_str); break;
|
||||||
|
case SUBNET_IPV4: fprintf(out, "ifconfig \"$INTERFACE\" %s\n", address_str); break;
|
||||||
|
case SUBNET_IPV6: fprintf(out, "ifconfig \"$INTERFACE\" inet6 %s\n", address_str); break;
|
||||||
|
default: return;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -152,8 +152,21 @@ void ifconfig_route(FILE *out, const char *value) {
|
||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#elif defined(HAVE_BSD)
|
#elif defined(HAVE_MINGW) || defined(HAVE_CYGWIN)
|
||||||
// BSD route command is silly and doesn't accept an interface name as a destination.
|
if(*gateway_str) {
|
||||||
|
switch(subnet.type) {
|
||||||
|
case SUBNET_IPV4: fprintf(out, "netsh inetface ipv4 add route %s \"%%INTERFACE%%\" %s\n", subnet_str, gateway_str); break;
|
||||||
|
case SUBNET_IPV6: fprintf(out, "netsh inetface ipv6 add route %s \"%%INTERFACE%%\" %s\n", subnet_str, gateway_str); break;
|
||||||
|
default: return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
switch(subnet.type) {
|
||||||
|
case SUBNET_IPV4: fprintf(out, "netsh inetface ipv4 add route %s \"%%INTERFACE%%\"\n", subnet_str); break;
|
||||||
|
case SUBNET_IPV6: fprintf(out, "netsh inetface ipv6 add route %s \"%%INTERFACE%%\"\n", subnet_str); break;
|
||||||
|
default: return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else // assume BSD
|
||||||
if(!*gateway_str) {
|
if(!*gateway_str) {
|
||||||
switch(subnet.type) {
|
switch(subnet.type) {
|
||||||
case SUBNET_IPV4:
|
case SUBNET_IPV4:
|
||||||
|
@ -180,19 +193,5 @@ void ifconfig_route(FILE *out, const char *value) {
|
||||||
case SUBNET_IPV6: fprintf(out, "route add -inet6 %s %s\n", subnet_str, gateway_str); break;
|
case SUBNET_IPV6: fprintf(out, "route add -inet6 %s %s\n", subnet_str, gateway_str); break;
|
||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
#elif defined(HAVE_MINGW) || defined(HAVE_CYGWIN)
|
|
||||||
if(*gateway_str) {
|
|
||||||
switch(subnet.type) {
|
|
||||||
case SUBNET_IPV4: fprintf(out, "netsh inetface ipv4 add route %s \"%%INTERFACE%%\" %s\n", subnet_str, gateway_str); break;
|
|
||||||
case SUBNET_IPV6: fprintf(out, "netsh inetface ipv6 add route %s \"%%INTERFACE%%\" %s\n", subnet_str, gateway_str); break;
|
|
||||||
default: return;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
switch(subnet.type) {
|
|
||||||
case SUBNET_IPV4: fprintf(out, "netsh inetface ipv4 add route %s \"%%INTERFACE%%\"\n", subnet_str); break;
|
|
||||||
case SUBNET_IPV6: fprintf(out, "netsh inetface ipv6 add route %s \"%%INTERFACE%%\"\n", subnet_str); break;
|
|
||||||
default: return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,4 +5,6 @@
|
||||||
# Just test whether the executables work
|
# Just test whether the executables work
|
||||||
$tincd --help
|
$tincd --help
|
||||||
$tinc --help
|
$tinc --help
|
||||||
$sptps_test --help
|
if [ -e $sptps_test ]; then
|
||||||
|
$sptps_test --help
|
||||||
|
fi
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
. ./testlib.sh
|
. ./testlib.sh
|
||||||
|
|
||||||
|
# Skip this test if we did not compile sptps_test
|
||||||
|
|
||||||
|
test -e $sptps_test || exit 77
|
||||||
|
|
||||||
# Generate keys
|
# Generate keys
|
||||||
|
|
||||||
mkdir -p $d1
|
mkdir -p $d1
|
||||||
|
|
|
@ -9,18 +9,10 @@ sptps_keypair=../src/sptps_keypair
|
||||||
|
|
||||||
# Test directories
|
# Test directories
|
||||||
|
|
||||||
case "$_" in
|
scriptname=`basename $0`
|
||||||
/*)
|
d1=$PWD/$scriptname.1
|
||||||
d1=$_.1
|
d2=$PWD/$scriptname.2
|
||||||
d2=$_.2
|
d3=$PWD/$scriptname.3
|
||||||
d3=$_.3
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
d1=$PWD/$_.1
|
|
||||||
d2=$PWD/$_.2
|
|
||||||
d3=$PWD/$_.3
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Default arguments for both tinc and tincd
|
# Default arguments for both tinc and tincd
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue