iliaa Fri Feb 7 17:49:21 2003 EDT Modified files: /php4/main php_streams.h Log: Added missing definitions. Index: php4/main/php_streams.h diff -u php4/main/php_streams.h:1.66 php4/main/php_streams.h:1.67 --- php4/main/php_streams.h:1.66 Mon Jan 6 09:00:57 2003 +++ php4/main/php_streams.h Fri Feb 7 17:49:21 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_streams.h,v 1.66 2003/01/06 14:00:57 wez Exp $ */ +/* $Id: php_streams.h,v 1.67 2003/02/07 22:49:21 iliaa Exp $ */ #ifndef PHP_STREAMS_H #define PHP_STREAMS_H @@ -481,7 +481,6 @@ #define IGNORE_PATH 0 #define USE_PATH 1 #define IGNORE_URL 2 -/* There's no USE_URL. */ #define ENFORCE_SAFE_MODE 4 #define REPORT_ERRORS 8 /* If you don't need to write to the stream, but really need to @@ -501,6 +500,12 @@ /* this flag is only used by include/require functions */ #define STREAM_OPEN_FOR_INCLUDE 128 + +/* this flag tells streams to ONLY open urls */ +#define STREAM_USE_URL 256 + +/* this flag is used when only the headers from HTTP request are to be fetched */ +#define STREAM_ONLY_GET_HEADERS 512 /* Antique - no longer has meaning */ #define IGNORE_URL_WIN 0
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php