summaryrefslogtreecommitdiff
path: root/main/fopen_wrappers.h
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - add expand_filepath_with_mode (not used anywhere yet but will be used for ↵Pierre Joye2011-07-251-0/+1
| | | | file ops (fopen&co) to avoid extra links resolution and other non required ops on open
* - Year++Felipe Pena2011-01-011-1/+1
|
* use correct condition in the ifAntony Dovgal2010-05-251-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - MFH: add OPENBASEDIR_CHECKPATH macro to ease merge between 5.3 and 6, it ↵Pierre Joye2009-01-161-0/+10
| | | | includes safemode (5.3) and openbasedir check
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: - Changed open_basedir to allow tightening in runtime contexts. (Sara)Hannes Magnusson2008-12-091-0/+3
| | | | | - Add test
* MFH: Missing files in previous commit (Check the relevant path for open_basedirArnaud Le Blanc2008-08-111-0/+1
| | | | | in symlink())
* Optimized require_once() and include_once() by eliminationg open() syscall ↵Dmitry Stogov2008-03-051-0/+2
| | | | on second usage.
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed bug #43580 (removed bogus declaration of a non-existent php_is_url()Ilia Alshanetsky2007-12-131-1/+0
| | | | | function)
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* add const keywordsNuno Lopes2006-07-011-2/+2
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* Fix for bug #24313 (port from dead PHP_5 branch)Ilia Alshanetsky2003-06-241-0/+1
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-0/+1
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Fix a few warningsZeev Suraski2002-08-191-2/+2
|
* Protect C code with extern "C"Wez Furlong2002-05-201-0/+2
|
* Fix for php_stream_gets when the implementation does not support itWez Furlong2002-03-171-13/+0
| | | | | | | | | natively (Thanks Marcus). Implement php_stream_make_seekable() and add STREAM_MUST_SEEK as an option to php_stream_open_wrapper(). See README.STREAMS for usage.
* tidy up the headers (streams related)Wez Furlong2002-03-171-27/+2
|
* New PHP streams...Wez Furlong2002-03-151-17/+3
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Changed php.ini directive 'safe_mode_include_dir' to accept aJames E. Flemer2002-02-011-0/+2
| | | | | | | | | | (semi)colon separated path, rather than a single directory. Also moved checking of said path into a separate path for code readability. @- Changed php.ini directive 'safe_mode_include_dir' to accept a @ (semi)colon separated path (like 'include_path') rather than @ a single directory. (jflemer)
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-11/+11
| | | | | - whitespace fixes
* kill warning and make this build again.foobar2001-08-011-1/+1
|
* More TSRMLS_FETCH annihilation. Enough for today...Zeev Suraski2001-07-311-4/+6
|
* More TSRMLS_FETCH work. Got it under 400 now.Zeev Suraski2001-07-311-5/+5
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-1/+1
|
* - Fix __FILE__ in the main script in CGI/command line mode.Andi Gutmans2001-07-211-1/+2
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* fopen wrappers cleanupHartmut Holzgraefe2000-10-131-2/+1
| | | | | | | | | - comfiguration is now done by an ini parameter instead of a compile time option - the implementations of the three standard wrappers now live in seperate files in ext/standard - the compiler is happy again, no more warnings
* - The beginning of an attempt to cleanup fopen-wrappers.Andi Gutmans2000-08-161-4/+4
| | | | | | | | | | | | | | | - I started with trying to localize the V_FOPEN's so that we can have a - version which won't really open the file for include_once/require_once to - work faster and have less chance of a race which would cause a fd leak. - What I did will, therefore, change but I want to do this step by step - because the code is extremley messy so first of all I want to make sure - that the isolating of the V_FOPEN code doesn't break anything. - How about moving URL stuff out of this file? - php_fopen_url_wrapper() copy and pasted the second part of - php_fopen_wrapper() (incorrectly). Please try not to copy&paste code but - centralize functionality. Need to think of a nice way to nuke one of the - copies and have both functions use the same one.
* Standartize full path handling - everything now goes via expand_filepathStanislav Malyshev2000-08-081-1/+1
| | | | | Add errno to open_basedir checking function
* Rename macros which begin with underscore to valid macros.Sascha Schumann2000-07-031-2/+2
|
* @ fopen_wrappers() are now extensible via modulesHartmut Holzgraefe2000-06-081-0/+5
| | | | | | so here it finaly is, the more general approach to fopen wrappers # see what i'll break this time
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* - Don't need to extern functionsAndi Gutmans2000-04-091-7/+7
| | | | | - Use virtual_file_ex() in expand_filepath()
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* Fine tune Andi's patchZeev Suraski2000-02-111-2/+2
|
* - Introduce PHP_WIN32Andi Gutmans2000-02-101-2/+2
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* php3 -> php prefix workAndrei Zmievski1999-12-211-2/+0
|