v/vlib/picohttpparser/picohttpparser.v

36 lines
1.3 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2020-01-23 03:26:30 +01:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module picohttpparser
#flag -I @VEXEROOT/thirdparty/picohttpparser
#flag -L @VEXEROOT/thirdparty/picohttpparser
#flag @VEXEROOT/thirdparty/picohttpparser/picohttpparser.o
2020-01-23 03:26:30 +01:00
#include "picohttpparser.h"
struct C.phr_header {
pub:
name &char
name_len int
value &char
2020-01-23 03:26:30 +01:00
value_len int
}
type PPchar = &&char
2020-01-23 03:26:30 +01:00
struct C.phr_header_t {}
2021-09-08 12:09:32 +02:00
fn C.phr_parse_request(buf &char, len usize, method PPchar, method_len &usize, path PPchar, path_len &usize, minor_version &int, headers &C.phr_header, num_headers &usize, last_len usize) int
2021-09-08 12:09:32 +02:00
fn C.phr_parse_response(buf &char, len usize, minor_version &int, status &int, msg PPchar, msg_len &usize, headers &C.phr_header, num_headers &usize, last_len usize) int
2021-09-08 12:09:32 +02:00
fn C.phr_parse_headers(buf &char, len usize, headers &C.phr_header, num_headers &usize, last_len usize) int
2021-09-08 12:09:32 +02:00
fn C.phr_parse_request_path(buf_start &char, len usize, method PPchar, method_len &usize, path PPchar, path_len &usize) int
fn C.phr_parse_request_path_pipeline(buf_start &char, len usize, method PPchar, method_len &usize, path PPchar, path_len &usize) int
fn C.get_date() &char
2020-01-23 03:26:30 +01:00
// static inline int u64toa(char* buf, uint64_t value) {
fn C.u64toa(buffer &char, value u64) int