On Sun, Jul 26, 2026 at 11:40 AM Mike via users <[email protected]> wrote: > > On 2026-07-26 15:16, Eric Covener wrote: > >> This number means the limit of my request line. We see there's 1 byte of > >> difference compared to the number given by the documentation of the server > >> (8190). > > > > From my reading it looks like the high level code allocates space for > > 2 bytes over the limit (presumably to account for CR LF but not null > > termination). > > But the lower level functions it calls don't return the CR LF, only > > null termination, resulting in accepting 1 additional byte of real > > content. > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > I understand you're saying that it's expected, though maybe not desired. But > what "high level code" and "lower level functions" do you mean?
The code in httpd that reads HTTP 1.1 requests off the wire and the lower level code that splits it into lines. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
