From ec5bc1283662a9b31b674d796bf1440a3d79a92b Mon Sep 17 00:00:00 2001 From: robaho Date: Sat, 20 Nov 2021 15:16:22 -0600 Subject: [PATCH] add comment about WriteBuf size --- src/HttpServer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HttpServer.h b/src/HttpServer.h index ef2af396..6280fce4 100644 --- a/src/HttpServer.h +++ b/src/HttpServer.h @@ -203,7 +203,7 @@ public: struct ev_loop *get_loop() const; - using WriteBuf = Buffer<512_k>; + using WriteBuf = Buffer<512_k>; // This needs to be >= largest frame sent, or frame is not sent WriteBuf *get_wb();