cron2 has submitted this change. ( http://gerrit.openvpn.net/c/openvpn/+/1203?usp=email )
Change subject: Fix t_net.sh / networking_testdriver after 'broadcast' change ...................................................................... Fix t_net.sh / networking_testdriver after 'broadcast' change Commit 0df0edc49c re-introduced explicit setting of broadcast addresses for Linux IPv4 interfaces. t_net.sh verifies that the built-in netlink code (sitnl) achieves the same result as "equivalent" iproute2 statements - and we missed adjusting of these iproute2 statements (printed by networking_testdriver). Done. Change-Id: I5fea6ca1ccadb434b5c4f4b49881524a079a9d15 Signed-off-by: Gert Doering <[email protected]> Acked-by: Antonio Quartulli <[email protected]> Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1203 Message-Id: <[email protected]> URL: https://sourceforge.net/p/openvpn/mailman/message/59236810/ Signed-off-by: Gert Doering <[email protected]> --- M tests/unit_tests/openvpn/test_networking.c 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/openvpn/test_networking.c b/tests/unit_tests/openvpn/test_networking.c index f2da83e..6a2d09f 100644 --- a/tests/unit_tests/openvpn/test_networking.c +++ b/tests/unit_tests/openvpn/test_networking.c @@ -61,7 +61,7 @@ addr = ntohl(addr); - printf("CMD: ip addr add %s/%d dev %s\n", addr_str, prefixlen, iface); + printf("CMD: ip addr add %s/%d dev %s broadcast +\n", addr_str, prefixlen, iface); return net_addr_v4_add(NULL, iface, &addr, prefixlen); } -- To view, visit http://gerrit.openvpn.net/c/openvpn/+/1203?usp=email To unsubscribe, or for help writing mail filters, visit http://gerrit.openvpn.net/settings Gerrit-Project: openvpn Gerrit-Branch: master Gerrit-Change-Id: I5fea6ca1ccadb434b5c4f4b49881524a079a9d15 Gerrit-Change-Number: 1203 Gerrit-PatchSet: 2 Gerrit-Owner: cron2 <[email protected]> Gerrit-Reviewer: flichtenheld <[email protected]> Gerrit-Reviewer: ordex <[email protected]> Gerrit-Reviewer: plaisthos <[email protected]> Gerrit-CC: openvpn-devel <[email protected]> Gerrit-MessageType: merged
_______________________________________________ Openvpn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openvpn-devel
