From e3f0205e9c2757041d39688b72e454d626eb7c96 Mon Sep 17 00:00:00 2001 From: Calvin Xiao Date: Sun, 4 Apr 2021 06:48:55 +0800 Subject: [PATCH] Reduce puma_parser struct size --- ext/puma_http11/http11_parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/puma_http11/http11_parser.h b/ext/puma_http11/http11_parser.h index eb0afd4435..2debc89c98 100644 --- a/ext/puma_http11/http11_parser.h +++ b/ext/puma_http11/http11_parser.h @@ -29,8 +29,8 @@ typedef void (*field_cb)(struct puma_parser* hp, typedef struct puma_parser { int cs; - size_t body_start; int content_len; + size_t body_start; size_t nread; size_t mark; size_t field_start;