error control for http\Url
[m6w6/ext-http] / src / php_http_url.h
index 50c5a5cc0ea0f415886df9b0574f362628fb0f76..3838a6b9ee143572efb46c900c6ff0a47db862f6 100644 (file)
 /* percent encode multibyte sequences in userinfo, path, query and fragment */
 #define PHP_HTTP_URL_PARSE_TOPCT       0x200000
 
 /* percent encode multibyte sequences in userinfo, path, query and fragment */
 #define PHP_HTTP_URL_PARSE_TOPCT       0x200000
 
+/* ignore errors */
+#define PHP_HTTP_URL_IGNORE_ERRORS     0x10000000
+/* do not report errors */
+#define PHP_HTTP_URL_SILENT_ERRORS     0x20000000
+
+#define PHP_HTTP_URL_STDFLAGS          0x00332003
+
 typedef struct php_http_url {
        /* compatible to php_url, but do not use php_url_free() */
        char *scheme;
 typedef struct php_http_url {
        /* compatible to php_url, but do not use php_url_free() */
        char *scheme;