diff options
| -rw-r--r-- | talpid_openvpn_plugin/src/ffi/structs.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/talpid_openvpn_plugin/src/ffi/structs.rs b/talpid_openvpn_plugin/src/ffi/structs.rs index 325f312974..ba5bc2b343 100644 --- a/talpid_openvpn_plugin/src/ffi/structs.rs +++ b/talpid_openvpn_plugin/src/ffi/structs.rs @@ -17,9 +17,9 @@ pub struct openvpn_plugin_args_open_in { #[allow(dead_code)] #[repr(C)] enum ovpnSSLAPI { - SSLAPI_NONE, - SSLAPI_OPENSSL, - SSLAPI_MBEDTLS, + None, + OpenSsl, + MbedTls, } /// Struct used for returning values from `openvpn_plugin_open_v3` to OpenVPN. |
