]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Rename files with 'polarssl' in the name to 'mbedtls'
authorSteffan Karger <steffan@karger.me>
Sun, 17 Apr 2016 18:35:43 +0000 (20:35 +0200)
committerGert Doering <gert@greenie.muc.de>
Thu, 28 Apr 2016 14:59:51 +0000 (16:59 +0200)
The patch looks huge, but it's just file renames, and required changes in
includes / Makefiles.  Use 'git diff -C' or a tool like gitk to easily
review this patch.

Signed-off-by: Steffan Karger <steffan@karger.me>
Acked-by: Arne Schwabe <arne@rfc2549.org>
Message-Id: <1460918143-408-2-git-send-email-steffan@karger.me>
URL: http://article.gmane.org/gmane.network.openvpn.devel/11459
Signed-off-by: Gert Doering <gert@greenie.muc.de>
12 files changed:
src/openvpn/Makefile.am
src/openvpn/crypto_backend.h
src/openvpn/crypto_mbedtls.c [moved from src/openvpn/crypto_polarssl.c with 100% similarity]
src/openvpn/crypto_mbedtls.h [moved from src/openvpn/crypto_polarssl.h with 100% similarity]
src/openvpn/pkcs11_mbedtls.c [moved from src/openvpn/pkcs11_polarssl.c with 100% similarity]
src/openvpn/plugin.h
src/openvpn/ssl_backend.h
src/openvpn/ssl_mbedtls.c [moved from src/openvpn/ssl_polarssl.c with 99% similarity]
src/openvpn/ssl_mbedtls.h [moved from src/openvpn/ssl_polarssl.h with 100% similarity]
src/openvpn/ssl_verify.h
src/openvpn/ssl_verify_mbedtls.c [moved from src/openvpn/ssl_verify_polarssl.c with 99% similarity]
src/openvpn/ssl_verify_mbedtls.h [moved from src/openvpn/ssl_verify_polarssl.h with 100% similarity]

index bf1d749da4f11c5d2a7a296ff8a1fb8e155501e2..9d4bf618237b062c8451ba974c9073ce82b3f79a 100644 (file)
@@ -46,7 +46,7 @@ openvpn_SOURCES = \
        comp-lz4.c comp-lz4.h \
        crypto.c crypto.h crypto_backend.h \
        crypto_openssl.c crypto_openssl.h \
-       crypto_polarssl.c crypto_polarssl.h \
+       crypto_mbedtls.c crypto_mbedtls.h \
        dhcp.c dhcp.h \
        errlevel.h \
        error.c error.h \
@@ -80,7 +80,7 @@ openvpn_SOURCES = \
        occ.c occ.h occ-inline.h \
        pkcs11.c pkcs11.h pkcs11_backend.h \
        pkcs11_openssl.c \
-       pkcs11_polarssl.c \
+       pkcs11_mbedtls.c \
        openvpn.c openvpn.h \
        options.c options.h \
        otime.c otime.h \
@@ -105,11 +105,11 @@ openvpn_SOURCES = \
        socks.c socks.h \
        ssl.c ssl.h  ssl_backend.h \
        ssl_openssl.c ssl_openssl.h \
-       ssl_polarssl.c ssl_polarssl.h \
+       ssl_mbedtls.c ssl_mbedtls.h \
        ssl_common.h \
        ssl_verify.c ssl_verify.h ssl_verify_backend.h \
        ssl_verify_openssl.c ssl_verify_openssl.h \
-       ssl_verify_polarssl.c ssl_verify_polarssl.h \
+       ssl_verify_mbedtls.c ssl_verify_mbedtls.h \
        status.c status.h \
        syshead.h \
        tun.c tun.h \
index c4986f558e5bc8ce912d62964bcc63c42639527a..3893f140244e0408c23c5bab12e3468857a5c33a 100644 (file)
@@ -34,7 +34,7 @@
 #include "crypto_openssl.h"
 #endif
 #ifdef ENABLE_CRYPTO_MBEDTLS
-#include "crypto_polarssl.h"
+#include "crypto_mbedtls.h"
 #endif
 #include "basic.h"
 
index 74ac8b1e56678bce15c19165e8e0b93b2b6ef323..3c010476afefe357b7d7ba0ebd98bcfc3e3bf1d0 100644 (file)
@@ -33,7 +33,7 @@
 #include "ssl_verify_openssl.h"
 #endif
 #ifdef ENABLE_CRYPTO_MBEDTLS
-#include "ssl_verify_polarssl.h"
+#include "ssl_verify_mbedtls.h"
 #endif
 #include "openvpn-plugin.h"
 
index dfccb4472cd7966b43aca1ee4cc803fe7a3cc640..542c373d6f4f1e5c35e97b5036045d007043d46c 100644 (file)
@@ -39,8 +39,8 @@
 #define SSLAPI SSLAPI_OPENSSL
 #endif
 #ifdef ENABLE_CRYPTO_MBEDTLS
-#include "ssl_polarssl.h"
-#include "ssl_verify_polarssl.h"
+#include "ssl_mbedtls.h"
+#include "ssl_verify_mbedtls.h"
 #define SSLAPI SSLAPI_MBEDTLS
 #endif
 
similarity index 99%
rename from src/openvpn/ssl_polarssl.c
rename to src/openvpn/ssl_mbedtls.c
index 483ec1cd38a549f2061195386a3c9223149928df..9da33adfea9c5c8f7aa3bce988d7c3d32403db08 100644 (file)
@@ -48,7 +48,7 @@
 
 #include <mbedtls/havege.h>
 
-#include "ssl_verify_polarssl.h"
+#include "ssl_verify_mbedtls.h"
 #include <mbedtls/debug.h>
 #include <mbedtls/error.h>
 #include <mbedtls/net.h>
index 5eb18435295685aac18976dd70ae99643b1c59ca..f693b2a48746e536d3116a617fb1a3538f691fbc 100644 (file)
@@ -41,7 +41,7 @@
 #include "ssl_verify_openssl.h"
 #endif
 #ifdef ENABLE_CRYPTO_MBEDTLS
-#include "ssl_verify_polarssl.h"
+#include "ssl_verify_mbedtls.h"
 #endif
 
 #include "ssl_verify_backend.h"
similarity index 99%
rename from src/openvpn/ssl_verify_polarssl.c
rename to src/openvpn/ssl_verify_mbedtls.c
index ff76d3d38b9ac81e533285078ee1b62877578518..ffe196ec08f6373da0019aa0e9890d5e96ba8e75 100644 (file)
@@ -37,7 +37,7 @@
 
 #if defined(ENABLE_CRYPTO) && defined(ENABLE_CRYPTO_MBEDTLS)
 
-#include "crypto_polarssl.h"
+#include "crypto_mbedtls.h"
 #include "ssl_verify.h"
 #include <mbedtls/asn1.h>
 #include <mbedtls/error.h>