X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_api.h;h=ac56e9a295602976d8a6fe8c86ed060d2b8e2dcf;hp=573b2a4f835d58ae444f66f09001d1413e0e1be5;hb=562b92bca8c6c98f2358b429d8113861e49877a2;hpb=e6b35fbe072a13b0e792952852fcd1499bd8e610 diff --git a/php_http_api.h b/php_http_api.h index 573b2a4..ac56e9a 100644 --- a/php_http_api.h +++ b/php_http_api.h @@ -119,19 +119,35 @@ PHP_HTTP_API STATUS _http_get_request_body_ex(char **body, size_t *length, zend_ #define http_get_request_body_stream() _http_get_request_body_stream(TSRMLS_C) PHP_HTTP_API php_stream *_http_get_request_body_stream(TSRMLS_D); + +typedef void (*http_parse_params_callback)(void *cb_arg, const char *key, int keylen, const char *val, int vallen TSRMLS_DC); + +#define http_parse_params_default_callback _http_parse_params_default_callback +PHP_HTTP_API void _http_parse_params_default_callback(void *ht, const char *key, int keylen, const char *val, int vallen TSRMLS_DC); + +#define http_parse_params(s, ht) _http_parse_params_ex((s), 1, _http_parse_params_default_callback, (ht) TSRMLS_CC) +#define http_parse_params_ex(s, comma, cb, a) _http_parse_params_ex((s), (comma), (cb), (a) TSRMLS_CC) +PHP_HTTP_API STATUS _http_parse_params_ex(const char *params, int alloc_comma_sep, http_parse_params_callback cb, void *cb_arg TSRMLS_DC); + + #define http_locate_body _http_locate_body static inline const char *_http_locate_body(const char *message) { - const char *cr = strstr(message, "\r\n\r\n"); - const char *lf = strstr(message, "\n\n"); - - if (lf && cr) { - return MIN(lf + 2, cr + 4); - } else if (lf || cr) { - return MAX(lf + 2, cr + 4); - } else { - return NULL; + const char *body = NULL, *msg = message; + + while (*msg) { + if (*msg == '\n') { + if (*(msg+1) == '\n') { + body = msg + 2; + break; + } else if (*(msg+1) == '\r' && *(msg+2) == '\n' && msg != message && *(msg-1) == '\r') { + body = msg + 3; + break; + } + } + ++msg; } + return body; } #define http_locate_eol _http_locate_eol