1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/http/backend_win.v
2019-08-18 13:04:17 +03:00

31 lines
695 B
Go

// 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
#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)
req := build_request_headers('', method, host_name, path)
length := int(C.request(host_name.str, req.str, buff))
C.vschannel_cleanup()
return parse_response(string(buff, length))
}