commit 454711903eeb8fe10dcb57e44a50b268eb3e6463 from: Omar Polo date: Tue May 14 19:03:09 2024 UTC bufio: crank BIO_CHUNK up to 64k forgot it set to a low value when testing the resizing, the left way too low. prodded by stsp. ok stsp commit - 45c5bd12280f38df8ce2cf82d06beeb15ed80aca commit + 454711903eeb8fe10dcb57e44a50b268eb3e6463 blob - fbef23e4160ecd417a5885fd1cbae17390b17c29 blob + 1b7d62b343e53351b329dc63cbf65aa6464affef --- lib/bufio.h +++ lib/bufio.h @@ -27,7 +27,7 @@ struct tls; -#define BIO_CHUNK 128 +#define BIO_CHUNK (64 * 1024) struct buf { uint8_t *buf; size_t len;