v/vlib/http/backend_win.v

30 lines
745 B
V
Raw Normal View History

// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module http
2019-08-10 08:21:20 +02:00
#flag windows -I @VROOT/thirdparty/vschannel
#flag -l ws2_32
#flag -l crypt32
#include "vschannel.c"
fn C.new_tls_context() C.TlsContext
fn init_module() {}
2019-08-25 00:48:06 +02:00
fn (req &Request) ssl_do(port int, method, host_name, path string) Response {
mut ctx := C.new_tls_context()
C.vschannel_init(&ctx)
mut buff := malloc(C.vsc_init_resp_buff_size)
2019-08-21 19:04:06 +02:00
addr := host_name
2019-08-25 00:48:06 +02:00
sdata := req.build_request_headers(method, host_name, path)
length := int(C.request(&ctx, port, addr.str, sdata.str, &buff))
2019-08-21 19:04:06 +02:00
C.vschannel_cleanup(&ctx)
return parse_response(string(buff, length))
}