}
if (!first_boundary) {
- int st;
/* this is not the first boundary, read rest of this message */
php_http_buffer_append(&arg->buf, buf, real_boundary - buf);
- st=php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message);
- //fprintf(stderr, "1 st=%d\n",st);
}
/* move after the boundary */
/* let there be room for the next boundary */
if (len > arg->boundary_len) {
- int st;
consumed += len - arg->boundary_len;
php_http_buffer_append(&arg->buf, buf, len - arg->boundary_len);
- st=php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message);
- //fprintf(stderr, "2 st=%d\n", st);
+ php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message);
}
arg->consumed += consumed;