From ed0e25406cc13f78a464bb768a76826705241978 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 6 Jul 2018 19:29:49 -0700 Subject: [PATCH] ircd::server: Clarify comment. --- include/ircd/server/request.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/ircd/server/request.h b/include/ircd/server/request.h index 9b1e96199..7a7d3213c 100644 --- a/include/ircd/server/request.h +++ b/include/ircd/server/request.h @@ -131,9 +131,10 @@ struct ircd::server::request::opts /// Only applies when using dynamic content allocation when the message is /// received with chunked encoding. By default, chunks are saved in - /// individual buffers and copied to a final contiguous buffer. To skip the - /// contiguous allocation + copy and maintain the individual buffers, - /// set this option to false. + /// individual buffers and copied to a final contiguous buffer. We skip + /// that final step of allocating the contiguous buffer and the copy when + /// this is set to false; the chunk buffers will then remain in the chunks + /// vector as-is. bool contiguous_content {true}; /// Priority indication is factored into the link selection algorithm for