summaryrefslogtreecommitdiffstats
path: root/src/openvpn/options.c
diff options
context:
space:
mode:
authorGert Doering <gert@greenie.muc.de>2014-04-13 17:29:32 +0200
committerGert Doering <gert@greenie.muc.de>2014-04-18 20:51:16 +0200
commit25bc9f082432034315b3efd9401aa8a9e5884506 (patch)
treeb690ad2bc53a13479b0f7f2f2d1a47de39c333da /src/openvpn/options.c
parent22e834bee82b046e753d74ee374299720d0ec0bb (diff)
downloadopenvpn-25bc9f082432034315b3efd9401aa8a9e5884506.tar.gz
openvpn-25bc9f082432034315b3efd9401aa8a9e5884506.tar.xz
openvpn-25bc9f082432034315b3efd9401aa8a9e5884506.zip
Add SSL library version reporting.
Print the version of the SSL and LZO library (if any) used. SSL library version is also sent as IV_SSL=<version> to the server if --push-peer-info is enabled. Signed-off-by: Gert Doering <gert@greenie.muc.de> Acked-by: Steffan Karger <steffan.karger@fox-it.com> Message-Id: <20140416152456.GI16637@greenie.muc.de> URL: http://article.gmane.org/gmane.network.openvpn.devel/8537 (cherry picked from commit 1ec984b154aa3247ef58c9d44e7e477880b632b1)
Diffstat (limited to 'src/openvpn/options.c')
-rw-r--r--src/openvpn/options.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/openvpn/options.c b/src/openvpn/options.c
index 7741dbf..dcdc200 100644
--- a/src/openvpn/options.c
+++ b/src/openvpn/options.c
@@ -3436,10 +3436,28 @@ usage_small (void)
openvpn_exit (OPENVPN_EXIT_STATUS_USAGE); /* exit point */
}
+void
+show_library_versions(const unsigned int flags)
+{
+ msg (flags, "library versions: %s%s%s",
+#ifdef ENABLE_SSL
+ get_ssl_library_version(),
+#else
+ "",
+#endif
+#ifdef ENABLE_LZO
+ ", LZO ", lzo_version_string()
+#else
+ "", ""
+#endif
+ );
+}
+
static void
usage_version (void)
{
msg (M_INFO|M_NOPREFIX, "%s", title_string);
+ show_library_versions( M_INFO|M_NOPREFIX );
msg (M_INFO|M_NOPREFIX, "Originally developed by James Yonan");
msg (M_INFO|M_NOPREFIX, "Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>");
#ifndef ENABLE_SMALL