cron2 has submitted this change. ( http://gerrit.openvpn.net/c/openvpn/+/1447?usp=email )
Change subject: Add check for bind-dev in DCO options ...................................................................... Add check for bind-dev in DCO options Github: OpenVPN/openvpn#683 Change-Id: I5d5fca3f5f7a724b4f9ec98832d3a785459f36a5 Signed-off-by: Gert Doering <[email protected]> Acked-by: Antonio Quartulli <[email protected]> Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1447 Message-Id: <[email protected]> URL: https://www.mail-archive.com/[email protected]/msg35260.html Signed-off-by: Gert Doering <[email protected]> --- M src/openvpn/dco.c 1 file changed, 6 insertions(+), 0 deletions(-) diff --git a/src/openvpn/dco.c b/src/openvpn/dco.c index e41d59f..06d5920 100644 --- a/src/openvpn/dco.c +++ b/src/openvpn/dco.c @@ -317,6 +317,12 @@ } } + if (o->bind_dev) + { + msg(msglevel, "Note: bind-dev not supported with DCO, disabling data channel offload"); + return false; + } + #if defined(_WIN32) if (o->mode == MODE_SERVER) { -- To view, visit http://gerrit.openvpn.net/c/openvpn/+/1447?usp=email To unsubscribe, or for help writing mail filters, visit http://gerrit.openvpn.net/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: openvpn Gerrit-Branch: release/2.6 Gerrit-Change-Id: I5d5fca3f5f7a724b4f9ec98832d3a785459f36a5 Gerrit-Change-Number: 1447 Gerrit-PatchSet: 3 Gerrit-Owner: cron2 <[email protected]> Gerrit-Reviewer: ordex <[email protected]> Gerrit-Reviewer: plaisthos <[email protected]> Gerrit-CC: openvpn-devel <[email protected]>
_______________________________________________ Openvpn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openvpn-devel
