2020-02-03 07:00:36 +03:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-08-09 13:52:14 +03: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 13:54:56 +03:00
|
|
|
#flag -l ws2_32 -l crypt32 -l secur32 -l user32
|
2019-08-09 13:52:14 +03:00
|
|
|
|
|
|
|
#include "vschannel.c"
|
|
|
|
|
2019-08-29 12:33:20 +03:00
|
|
|
fn C.new_tls_context() C.TlsContext
|
|
|
|
|
2019-10-10 20:24:36 +03:00
|
|
|
fn (req &Request) ssl_do(port int, method, host_name, path string) ?Response {
|
2019-08-29 12:33:20 +03:00
|
|
|
mut ctx := C.new_tls_context()
|
|
|
|
C.vschannel_init(&ctx)
|
|
|
|
|
2019-08-25 21:27:12 +03:00
|
|
|
mut buff := malloc(C.vsc_init_resp_buff_size)
|
2019-08-21 20:04:06 +03:00
|
|
|
addr := host_name
|
2019-08-25 01:48:06 +03:00
|
|
|
sdata := req.build_request_headers(method, host_name, path)
|
2019-09-26 22:54:15 +03:00
|
|
|
length := int(C.request(&ctx, port, addr.to_wide(), sdata.str, &buff))
|
2019-08-21 20:04:06 +03:00
|
|
|
|
2019-08-29 12:33:20 +03:00
|
|
|
C.vschannel_cleanup(&ctx)
|
2019-08-17 15:50:47 +03:00
|
|
|
return parse_response(string(buff, length))
|
2019-08-09 13:52:14 +03:00
|
|
|
}
|