diff options
author | 2021-10-13 14:17:23 -0700 | |
---|---|---|
committer | 2021-10-13 14:17:23 -0700 | |
commit | 8f7f4ae72f720b713dc1e0c935c2db4306663435 (patch) | |
tree | 1d4ff21afbdce01051c0828f17212ca367088d84 /src | |
parent | c85b5f6a87db2b48ab74317e0413b179ee8468bd (diff) | |
download | bun-8f7f4ae72f720b713dc1e0c935c2db4306663435.tar.gz bun-8f7f4ae72f720b713dc1e0c935c2db4306663435.tar.zst bun-8f7f4ae72f720b713dc1e0c935c2db4306663435.zip |
`--turbo` mode for fetch cli, which disables sending TLS shutdown
Diffstat (limited to 'src')
-rw-r--r-- | src/deps/picohttp.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deps/picohttp.zig b/src/deps/picohttp.zig index 90b13e942..43f216cf4 100644 --- a/src/deps/picohttp.zig +++ b/src/deps/picohttp.zig @@ -152,7 +152,7 @@ pub const Response = struct { ); return switch (rc) { - -1 => error.BadResponse, + -1 => error.Malformed_HTTP_Response, -2 => brk: { offset.?.* += buf.len; |