From: Gert Doering Date: Mon, 7 Nov 2016 10:50:52 +0000 (+0100) Subject: openvpn version line: remove [IPv6], add [AEAD] if available X-Git-Tag: v2.4_beta1~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2391a3ab08227a061a7f561e26b9688f6ba80e70;p=thirdparty%2Fopenvpn.git openvpn version line: remove [IPv6], add [AEAD] if available Printing [IPv6] is no longer relevant information, as IPv6 support is always build in. So, "2.4 = has IPv6, always". [AEAD] is relevant information, as the underlying SSL library might be too old to have support for it (OpenSSL 0.9.x) and this eases figuring out why NCP is not upgrading a connection to AES-256-GCM. Trac #762 Signed-off-by: Gert Doering Acked-by: Steffan Karger Message-Id: <1478515852-17381-1-git-send-email-gert@greenie.muc.de> URL: http://www.mail-archive.com/search?l=mid&q=1478515852-17381-1-git-send-email-gert@greenie.muc.de Signed-off-by: Gert Doering --- diff --git a/src/openvpn/options.c b/src/openvpn/options.c index 552bf5ab8..5a5e7ef57 100644 --- a/src/openvpn/options.c +++ b/src/openvpn/options.c @@ -103,7 +103,9 @@ const char title_string[] = " [MH/RECVDA]" # endif #endif - " [IPv6]" +#ifdef HAVE_AEAD_CIPHER_MODES + " [AEAD]" +#endif " built on " __DATE__ ;