1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
Alexander Medvednikov
2019-08-06 13:57:58 +02:00
parent e7fcc33597
commit eece058f18
2 changed files with 12 additions and 2 deletions

View File

@ -15,10 +15,14 @@ struct C.SSL {
}
fn init_module() {
init_openssl()
}
fn init_openssl() {
C.SSL_library_init()
C.SSL_load_error_strings()
C.OPENSSL_config(0)
//C.SSL_load_error_strings()
//C.OPENSSL_config(0)
}
fn ssl_do(method, host_name, path string) string {