X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_api.h;h=7163dc1fd8ab48118cb16a762550b3236960604d;hp=b8af494eb098a5012376a351ad963d30b4e1c412;hb=a3550dfdf5079087b74c28470cccaa59ed7712b4;hpb=6c4a552c1ad7b0018afb57a3d0028c2be166a30a diff --git a/php_http_api.h b/php_http_api.h index b8af494..7163dc1 100644 --- a/php_http_api.h +++ b/php_http_api.h @@ -36,6 +36,9 @@ PHP_HTTP_API long _http_support(long feature); #define pretty_key(key, key_len, uctitle, xhyphen) _http_pretty_key(key, key_len, uctitle, xhyphen) extern char *_http_pretty_key(char *key, size_t key_len, zend_bool uctitle, zend_bool xhyphen); +#define http_boundary(b, l) _http_boundary((b), (l) TSRMLS_CC) +extern size_t _http_boundary(char *buf, size_t len TSRMLS_DC); + #define http_error(type, code, string) _http_error_ex(type, code, "%s", string) #define http_error_ex _http_error_ex extern void _http_error_ex(long type TSRMLS_DC, long code, const char *format, ...);