2020-02-03 05:00:36 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-08-09 12:52:14 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module http
|
|
|
|
|
|
|
|
#flag windows -I @VROOT/thirdparty/vschannel
|
2020-06-19 12:54:56 +02:00
|
|
|
#flag -l ws2_32 -l crypt32 -l secur32 -l user32
|
2019-08-09 12:52:14 +02:00
|
|
|
#include "vschannel.c"
|
2019-08-29 11:33:20 +02:00
|
|
|
fn C.new_tls_context() C.TlsContext
|
|
|
|
|
2020-11-08 09:14:24 +01:00
|
|
|
fn (req &Request) ssl_do(port int, method Method, host_name string, path string) ?Response {
|
2019-08-29 11:33:20 +02:00
|
|
|
mut ctx := C.new_tls_context()
|
|
|
|
C.vschannel_init(&ctx)
|
2019-08-25 20:27:12 +02:00
|
|
|
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)
|
2019-09-26 21:54:15 +02:00
|
|
|
length := int(C.request(&ctx, port, addr.to_wide(), sdata.str, &buff))
|
2019-08-29 11:33:20 +02:00
|
|
|
C.vschannel_cleanup(&ctx)
|
2020-08-18 11:14:21 +02:00
|
|
|
return parse_response(unsafe {buff.vstring_with_len(length)})
|
2019-08-09 12:52:14 +02:00
|
|
|
}
|