1
Fork 0

Fix compilation with latest stdlib

This commit is contained in:
Alexey Yerin 2023-08-25 23:23:38 +03:00 committed by Drew DeVault
parent c203af3f8b
commit 372eb47e4a
2 changed files with 4 additions and 4 deletions

View file

@ -18,8 +18,8 @@ export fn do(client: *client, req: *request) (response | error) = {
assert(req.target.scheme == "http"); // TODO: https
const conn = dial::dial_uri("tcp", req.target)?;
let buf: [os::BUFSIZ]u8 = [0...];
let file = bufio::buffered(conn, [], buf);
let buf: [os::BUFSZ]u8 = [0...];
let file = bufio::init(conn, [], buf);
bufio::setflush(&file, []);
fmt::fprintf(&file, "{} ", req.method)?;

View file

@ -116,7 +116,7 @@ fn new_reader(
type identity_reader = struct {
vtable: io::stream,
conn: io::handle,
buffer: [os::BUFSIZ]u8,
buffer: [os::BUFSZ]u8,
pending: size,
length: size,
};
@ -189,7 +189,7 @@ type chunk_state = enum {
type chunked_reader = struct {
vtable: io::stream,
conn: io::handle,
buffer: [os::BUFSIZ]u8,
buffer: [os::BUFSZ]u8,
state: chunk_state,
// Amount of read-ahead data in buffer
pending: size,