summaryrefslogtreecommitdiff
path: root/main/streams/php_stream_plain_wrapper.h
Commit message (Collapse)AuthorAgeFilesLines
* bump year and license versionfoobar2006-01-011-3/+3
|
* merge VCWD_ACCESS bugfix to head.Wez Furlong2005-10-221-0/+1
| | | | | Test suite is unusable in HEAD, so I guess it works here too.
* - Bumber up yearfoobar2005-08-031-1/+1
|
* EXTERN_C wrapping for PHPAPI prototypesHartmut Holzgraefe2004-02-201-0/+4
| | | | | (Zend and main should now be ok)
* - 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?
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Implement persistent plain file streams.Wez Furlong2003-03-181-2/+2
| | | | | | | | | | | | | | | | | Usage: php_stream *stream = php_stream_fopen("/path/to/file", "r+b", NULL, STREAM_OPEN_PERSISTENT | ENFORCE_SAFE_MODE | REPORT_ERRORS); the filename and mode are combined to form the hash key for the persistent list; they must be identical for this same stream to be returned again in the next request. Calling php_stream_close() on a persistent stream *will* close it, as is usual with all persistent resources in PHP/ZE. This is deliberately *not* exposed to user-space PHP at this time.
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-1/+1
|
* Implement new filter API, stage 1.Wez Furlong2003-02-181-0/+61
This breaks user-space filters (for the time being), and those weird convert.* filters in ext/standard/filters.c The filters stack has been separated into one chain for read and one chain for write. The user-space stream_filter_append() type functions currently only operate on the read chain. They need extending to work with the write chain too.