Skip to content

Instantly share code, notes, and snippets.

@dstufft
Created July 20, 2014 06:58
Show Gist options
  • Save dstufft/db895704add752b2adc7 to your computer and use it in GitHub Desktop.
Save dstufft/db895704add752b2adc7 to your computer and use it in GitHub Desktop.
typedef struct http_parser {
/* Public State */
bool finished;
int error;
/* Callback Methods */
element_cb request_method;
/* Internal State */
int cs;
int mark;
} http_parser;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment