summaryrefslogtreecommitdiff
path: root/main/streams/php_stream_context.h
Commit message (Collapse)AuthorAgeFilesLines
* Must addref the resource when we make a new zval reference to it that will ↵Sara Golemon2004-03-011-1/+1
| | | | be exported to userspace.
* 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?
* Introduce connection pooling API. I'll use these in http/ftp fopen wrappers ↵Sara Golemon2003-07-021-0/+8
| | | | soon.
* MFBSara Golemon2003-06-271-2/+5
| | | | | Plug leak in context notifiers, implement notifier->dtor
* Plug leak (context options not freed)Sara Golemon2003-06-131-0/+3
| | | | | | | | Make contexts auto-registered, ensures userland contexts and C API contexts are both dealt with on request shutdown. Also brings contexts in keeping with streams which are already auto-registered.
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Implement default contexts. For the moment this is uselessSara Golemon2003-05-211-0/+9
| | | | | but it will be used soon for connection pooling.
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-1/+1
|
* Implement new filter API, stage 1.Wez Furlong2003-02-181-0/+109
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.