Home
last modified time | relevance | path

Searched refs:httpContentBuffer (Results 1 – 8 of 8) sorted by relevance

/dports/sysutils/monit/monit-5.29.0/src/protocols/
H A Dhttp.c169 while ((wantBytes = _getChunkSize(socket)) && haveBytes < Run.limits.httpContentBuffer) { in _processBodyChunked()
170 if (haveBytes + wantBytes > Run.limits.httpContentBuffer) { in _processBodyChunked()
171 …("HTTP: content buffer limit exceeded -- limiting the data to %d\n", Run.limits.httpContentBuffer); in _processBodyChunked()
172 wantBytes = Run.limits.httpContentBuffer - haveBytes; in _processBodyChunked()
187 } else if (*contentLength > (int)Run.limits.httpContentBuffer) { in _processBodyContentLength()
188 …("HTTP: content buffer limit exceeded -- limiting the data to %d\n", Run.limits.httpContentBuffer); in _processBodyContentLength()
189 *contentLength = Run.limits.httpContentBuffer; in _processBodyContentLength()
201 …while (haveBytes < Run.limits.httpContentBuffer && (readBytes = Socket_read(socket, *data + haveBy… in _processBodyUntilEOF()
205 if (haveBytes + wantBytes > Run.limits.httpContentBuffer) in _processBodyUntilEOF()
206 wantBytes = Run.limits.httpContentBuffer - haveBytes; in _processBodyUntilEOF()
/dports/sysutils/monit/monit-5.29.0/src/
H A Dmonit.h454 uint32_t httpContentBuffer; /**< Maximum tested HTTP content length [B] */ member
H A Dutil.c625 …f(" %-18s = httpContentBuffer: %s\n", " ", Convert_bytes2str(Run.limits.httpContentBuffer, buf));
H A Dp.y687 Run.limits.httpContentBuffer = $3 * $<number>4;
3351 Run.limits.httpContentBuffer = LIMIT_HTTPCONTENTBUFFER; in preparse()
H A Dy.tab.c3656 Run.limits.httpContentBuffer = (yyvsp[-1].number) * (yyvsp[0].number); in yyparse()
8392 Run.limits.httpContentBuffer = LIMIT_HTTPCONTENTBUFFER; in preparse()
/dports/sysutils/monit/monit-5.29.0/
H A Dmonitrc58 # httpContentBuffer: 1 MB, # limit for HTTP content test
/dports/sysutils/monit/monit-5.29.0/src/http/
H A Dcervlet.c1011 …, "Limit for HTTP content buffer", "%s", Convert_bytes2str(Run.limits.httpContentBuffer, buf)); in do_runtime()
/dports/sysutils/monit/monit-5.29.0/doc/
H A Dmonit.pod1778 | httpContentBuffer | limit for HTTP content test (response body) | 1 MB |