v/vlib/http/backend_win.v

31 lines
695 B
Go
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
import strings
import net.urllib
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 init_module() {}
fn ssl_do(method, host_name, path string) Response {
C.vschannel_init()
// TODO: joe-c
// dynamically increase in vschannel.c if needed
mut buff := malloc(44000)
2019-08-18 12:04:17 +02:00
req := build_request_headers('', method, host_name, path)
length := int(C.request(host_name.str, req.str, buff))
2019-08-18 12:04:17 +02:00
C.vschannel_cleanup()
return parse_response(string(buff, length))
}