Latest update - 9179

This commit is contained in:
2023-10-22 00:41:45 +09:00
parent efe5462a1f
commit 07e8034aff
2 changed files with 4 additions and 6 deletions
+3 -5
View File
@@ -388,13 +388,11 @@ ngx_http_v2_read_handler(ngx_event_t *rev)
h2mcf = ngx_http_get_module_main_conf(h2c->http_connection->conf_ctx, h2mcf = ngx_http_get_module_main_conf(h2c->http_connection->conf_ctx,
ngx_http_v2_module); ngx_http_v2_module);
available = h2mcf->recv_buffer_size - 2 * NGX_HTTP_V2_STATE_BUFFER_SIZE; available = h2mcf->recv_buffer_size - NGX_HTTP_V2_STATE_BUFFER_SIZE;
do { do {
p = h2mcf->recv_buffer; p = h2mcf->recv_buffer;
end = ngx_cpymem(p, h2c->state.buffer, h2c->state.buffer_used);
ngx_memcpy(p, h2c->state.buffer, NGX_HTTP_V2_STATE_BUFFER_SIZE);
end = p + h2c->state.buffer_used;
n = c->recv(c, end, available); n = c->recv(c, end, available);
@@ -2601,7 +2599,7 @@ ngx_http_v2_state_save(ngx_http_v2_connection_t *h2c, u_char *pos, u_char *end,
return ngx_http_v2_connection_error(h2c, NGX_HTTP_V2_INTERNAL_ERROR); return ngx_http_v2_connection_error(h2c, NGX_HTTP_V2_INTERNAL_ERROR);
} }
ngx_memcpy(h2c->state.buffer, pos, NGX_HTTP_V2_STATE_BUFFER_SIZE); ngx_memcpy(h2c->state.buffer, pos, size);
h2c->state.buffer_used = size; h2c->state.buffer_used = size;
h2c->state.handler = handler; h2c->state.handler = handler;
+1 -1
View File
@@ -388,7 +388,7 @@ ngx_http_v2_recv_buffer_size(ngx_conf_t *cf, void *post, void *data)
{ {
size_t *sp = data; size_t *sp = data;
if (*sp <= 2 * NGX_HTTP_V2_STATE_BUFFER_SIZE) { if (*sp <= NGX_HTTP_V2_STATE_BUFFER_SIZE) {
return "value is too small"; return "value is too small";
} }