From: Sara Golemon Date: Tue, 2 Dec 2003 20:06:40 +0000 (+0000) Subject: Register url_stat flag constants in userspace X-Git-Tag: php-5.0.0b3RC1~411 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dacb3a68fe043073fcacead1c60c094d5b0264f0;p=php Register url_stat flag constants in userspace --- diff --git a/main/streams/userspace.c b/main/streams/userspace.c index d1203a7afa..ecacfb73b6 100644 --- a/main/streams/userspace.c +++ b/main/streams/userspace.c @@ -71,6 +71,9 @@ PHP_MINIT_FUNCTION(user_streams) REGISTER_LONG_CONSTANT("STREAM_REPORT_ERRORS", REPORT_ERRORS, CONST_CS|CONST_PERSISTENT); REGISTER_LONG_CONSTANT("STREAM_MUST_SEEK", STREAM_MUST_SEEK, CONST_CS|CONST_PERSISTENT); + REGISTER_LONG_CONSTANT("STREAM_URL_STAT_LINK", PHP_STREAM_URL_STAT_LINK, CONST_CS|CONST_PERSISTENT); + REGISTER_LONG_CONSTANT("STREAM_URL_STAT_QUIET", PHP_STREAM_URL_STAT_QUIET, CONST_CS|CONST_PERSISTENT); + return SUCCESS; }