2019-08-09 12:52:14 +02:00
|
|
|
// 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
|
|
|
|
2019-08-09 12:52:14 +02:00
|
|
|
#flag windows -I @VROOT/thirdparty/vschannel
|
2019-08-10 10:05:59 +02:00
|
|
|
#flag -l ws2_32
|
|
|
|
#flag -l crypt32
|
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
|
|
|
|
|
2019-09-25 22:28:51 +02:00
|
|
|
fn init() int { return 1 }
|
2019-08-09 12:52:14 +02:00
|
|
|
|
2019-08-25 00:48:06 +02:00
|
|
|
fn (req &Request) ssl_do(port int, method, host_name, 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-08-29 11:33:20 +02:00
|
|
|
length := int(C.request(&ctx, port, addr.str, sdata.str, &buff))
|
2019-08-21 19:04:06 +02:00
|
|
|
|
2019-08-29 11:33:20 +02:00
|
|
|
C.vschannel_cleanup(&ctx)
|
2019-08-17 14:50:47 +02:00
|
|
|
return parse_response(string(buff, length))
|
2019-08-09 12:52:14 +02:00
|
|
|
}
|