From 362d14046e1354dbd6a28d962c03662b79b28186 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Oct 2025 00:37:33 +0000 Subject: [PATCH 1/2] Initial plan From ef5a58782369426fcb90ba18abf14b6de6630ce5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Oct 2025 00:44:24 +0000 Subject: [PATCH 2/2] Fix serializer javadocs to use 'writing' instead of 'reading' Co-authored-by: vinniefalco <1503976+vinniefalco@users.noreply.github.com> --- include/boost/http_proto/serializer.hpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/boost/http_proto/serializer.hpp b/include/boost/http_proto/serializer.hpp index f65f13ad..bfd3cd92 100644 --- a/include/boost/http_proto/serializer.hpp +++ b/include/boost/http_proto/serializer.hpp @@ -337,8 +337,8 @@ class serializer Initializes the serializer with the HTTP start-line and headers from `m`, and returns - a @ref stream object for reading the body - from an external source. + a @ref stream object for writing the body + to an external destination. Once the serializer is destroyed, @ref reset is called, or @ref is_done returns true, the @@ -346,8 +346,7 @@ class serializer The stream allows inverted control flow: the caller supplies body data via the serializer’s - internal buffer while reading from an external - source. + internal buffer for writing to the remote peer. Changing the contents of the message after calling this function and before @@ -397,7 +396,7 @@ class serializer @param m The message to read the HTTP start-line and headers from. - @return A @ref stream object for reading body + @return A @ref stream object for writing body content into the serializer's buffer. @see