-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update src/openvpn digest to 08fe4bb
- Loading branch information
1 parent
9f5346e
commit 56e28bb
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openvpn
updated
29 files
+25 −23 | .github/workflows/build.yaml | |
+3 −3 | .github/workflows/coverity-scan.yml | |
+8 −4 | CMakeLists.txt | |
+56 −0 | CMakePresets.json | |
+8 −0 | Changes.rst | |
+5 −3 | config.h.cmake.in | |
+1 −0 | src/openvpn/Makefile.am | |
+95 −4 | src/openvpn/crypto.c | |
+52 −1 | src/openvpn/crypto.h | |
+114 −0 | src/openvpn/crypto_epoch.c | |
+70 −0 | src/openvpn/crypto_epoch.h | |
+1 −0 | src/openvpn/crypto_mbedtls.h | |
+9 −7 | src/openvpn/dns.c | |
+2 −1 | src/openvpn/dns.h | |
+3 −3 | src/openvpn/options.c | |
+20 −20 | src/openvpn/packet_id.c | |
+25 −31 | src/openvpn/packet_id.h | |
+17 −8 | src/openvpn/ps.c | |
+52 −40 | src/openvpn/ssl.c | |
+3 −0 | src/openvpn/ssl_common.h | |
+8 −8 | src/openvpnmsica/openvpnmsica.c | |
+5 −1 | src/openvpnmsica/openvpnmsica.h | |
+3 −4 | src/openvpnserv/common.c | |
+34 −2 | src/openvpnserv/service.h | |
+1 −0 | tests/unit_tests/openvpn/Makefile.am | |
+32 −4 | tests/unit_tests/openvpn/test_buffer.c | |
+268 −1 | tests/unit_tests/openvpn/test_crypto.c | |
+10 −8 | tests/unit_tests/openvpn/test_packet_id.c | |
+0 −19 | tests/unit_tests/openvpn/test_ssl.c |