improve execute2 doc

event_stream
Ryan Dahl 14 years ago
parent c95a547959
commit ff762c2c9b

@ -247,7 +247,7 @@ struct http_parser_data {
* space in the user-supplied `http_parser_data` array. The last * space in the user-supplied `http_parser_data` array. The last
* element of `data` will be HTTP_NEEDS_DATA_ELEMENTS. Restart * element of `data` will be HTTP_NEEDS_DATA_ELEMENTS. Restart
* http_parser_execute2() with a fresh array of elements starting at * http_parser_execute2() with a fresh array of elements starting at
* the place that HTTP_NEEDS_DATA_ELEMENTS pointed to. * payload.string.p in the HTTP_NEEDS_DATA_ELEMENTS object.
* *
* 3. The parser cannot continue until http_parser_has_body(parser, 1) * 3. The parser cannot continue until http_parser_has_body(parser, 1)
* or http_parser_has_body(parser, 0) is called. This is required for * or http_parser_has_body(parser, 0) is called. This is required for
@ -260,8 +260,8 @@ struct http_parser_data {
* *
* The last element of `data` will be HTTP_NEEDS_INPUT. The user must * The last element of `data` will be HTTP_NEEDS_INPUT. The user must
* call http_parser_has_body() and then restart http_parser_execute2 * call http_parser_has_body() and then restart http_parser_execute2
* with a fresh array of `data` elements and starting at the place * with a fresh array of `data` elements and starting at
* HTTP_NEEDS_INPUT pointed to. * payload.string.p that HTTP_NEEDS_INPUT pointed to.
*/ */
int http_parser_execute2(http_parser* parser, int http_parser_execute2(http_parser* parser,
const char* buf, const char* buf,

Loading…
Cancel
Save