1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Reduce puma_parser struct size

This commit is contained in:
Calvin Xiao 2021-04-04 06:48:55 +08:00
parent 15b0794392
commit e3f0205e9c

View file

@ -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;