commit 228faf4bb0e11ed7b78392cd2ae65b016550c9b0 from: Omar Polo via: Thomas Adam date: Sun May 26 14:05:41 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 - 4caceeab0d973f8e053ed6e6c456fc2d4ebcc265 commit + 228faf4bb0e11ed7b78392cd2ae65b016550c9b0 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;