mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
net.ssl: switch to mbedtls over openssl (#15841)
This commit is contained in:
18
vlib/net/ssl/ssl_d_use_openssl.v
Normal file
18
vlib/net/ssl/ssl_d_use_openssl.v
Normal file
@@ -0,0 +1,18 @@
|
||||
module ssl
|
||||
|
||||
import net.openssl
|
||||
|
||||
pub struct SSLConn {
|
||||
openssl.SSLConn
|
||||
}
|
||||
|
||||
[params]
|
||||
pub struct SSLConnectConfig {
|
||||
openssl.SSLConnectConfig
|
||||
}
|
||||
|
||||
// new_ssl_conn returns a new SSLConn with the given config.
|
||||
pub fn new_ssl_conn(config SSLConnectConfig) ?&SSLConn {
|
||||
c := openssl.new_ssl_conn(config.SSLConnectConfig) or { return err }
|
||||
return &SSLConn{c}
|
||||
}
|
||||
Reference in New Issue
Block a user