X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_url.h;h=022ba31b0113dde448acf9476f8b585805a8bce0;hp=a482d2382184f8269015cf7a788df166c32059a6;hb=1090760c65b564b30c0e30598cd19a1238e683f6;hpb=bd80b17b026a00a254ee8693cd7bacf1ebdec4cf diff --git a/php_http_url.h b/php_http_url.h index a482d23..022ba31 100644 --- a/php_http_url.h +++ b/php_http_url.h @@ -33,6 +33,7 @@ PHP_HTTP_URL_STRIP_FRAGMENT \ ) #define PHP_HTTP_URL_FROM_ENV 0x1000 +#define PHP_HTTP_URL_SANITIZE_PATH 0x2000 PHP_HTTP_API void php_http_url(int flags, const php_url *old_url, const php_url *new_url, php_url **url_ptr, char **url_str, size_t *url_len TSRMLS_DC); @@ -41,10 +42,7 @@ PHP_HTTP_API STATUS php_http_url_encode_hash_ex(HashTable *ht, php_http_buffer_t static inline void php_http_url_argsep(const char **str, size_t *len TSRMLS_DC) { - *str = INI_STR("arg_separator.output"); - *len = strlen(*str); - - if (!*len) { + if (SUCCESS != php_http_ini_entry(ZEND_STRL("arg_separator.output"), str, len, 0 TSRMLS_CC) || !*len) { *str = PHP_HTTP_URL_ARGSEP; *len = lenof(PHP_HTTP_URL_ARGSEP); }