From 34cbe0abe1c3ff2893a96a8ff92c5353d24a84e8 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 1 Apr 2026 09:40:25 -1000 Subject: [PATCH] =?UTF-8?q?[api]=20Fix=20stale=20comment:=201MB=20?= =?UTF-8?q?=E2=86=92=2016MB=20socket=20buffers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/benchmarks/components/api/bench_helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/benchmarks/components/api/bench_helpers.h b/tests/benchmarks/components/api/bench_helpers.h index 04fe9324da..73e51bce3d 100644 --- a/tests/benchmarks/components/api/bench_helpers.h +++ b/tests/benchmarks/components/api/bench_helpers.h @@ -23,7 +23,7 @@ inline void drain_socket(int fd) { // Create a TCP loopback socket pair. Returns the write-side Socket // (wrapped for ESPHome) and the raw read-side fd for draining. -// Both ends are non-blocking with 1MB buffers. +// Both ends are non-blocking with 16MB buffers. inline std::pair, int> create_tcp_loopback() { // Create a TCP listener on loopback int listen_fd = ::socket(AF_INET, SOCK_STREAM, 0);