diff --git a/net/http/transport.ha b/net/http/transport.ha index 6e860bf..41044eb 100644 --- a/net/http/transport.ha +++ b/net/http/transport.ha @@ -114,7 +114,7 @@ fn new_reader( return stream as *io::stream; }; -export type identity_reader = struct { +type identity_reader = struct { vtable: io::stream, conn: io::handle, buffer: [os::BUFSIZ]u8, @@ -181,7 +181,7 @@ fn identity_read( return n; }; -export type chunked_reader = struct { +type chunked_reader = struct { vtable: io::stream, conn: io::handle, buffer: [os::BUFSIZ]u8,