Skip to content

Commit

Permalink
Merge pull request #2590 from calvinxiao/reduce-http-parser-size
Browse files Browse the repository at this point in the history
[changelog skip] Reduce puma_parser struct padding
  • Loading branch information
evanphx committed Apr 5, 2021
2 parents 15b0794 + e3f0205 commit 9eaa5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/puma_http11/http11_parser.h
Expand Up @@ -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;
Expand Down

0 comments on commit 9eaa5b9

Please sign in to comment.