summaryrefslogtreecommitdiff
path: root/main/streams/php_stream_context.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers to 2017Sammy Kaye Powers2017-01-041-1/+1
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | Cleanup resource handling APIsXinchen Hui2015-02-021-1/+1
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | trailing whitespace removalStanislav Malyshev2015-01-101-3/+3
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-10/+10
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | Changed data layout to allow more efficient operationsDmitry Stogov2014-04-021-1/+1
| |
* | Fixed stream notifierDmitry Stogov2014-03-181-1/+1
| |
* | Use better data structures (incomplete)Dmitry Stogov2014-02-141-1/+1
| |
* | Use better data structures (incomplete)Dmitry Stogov2014-02-131-1/+1
| |
* | Use better data structures (incomplete)Dmitry Stogov2014-02-101-5/+5
| |
* | Merge branch 'PHP-5.6'Xinchen Hui2014-01-031-1/+1
|\ \ | |/
| * Bump yearXinchen Hui2014-01-031-1/+1
| |
* | Kill a TSRMLS_FETCH() in php_stream_context_set() by passing TSRMLS_CC to itKalle Sommer Nielsen2013-12-181-1/+1
|/ | | | # For mysqlnd: Relevant PHP_API_VERSION are put in place for cross version compatibility
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Revert r134029. The streams pooling API was never used in moreGustavo André dos Santos Lopes2012-02-211-8/+0
| | | | | than 8 years and therefore unnecessarily adds complexity.
* - Year++Felipe Pena2012-01-011-1/+1
|
* Fix common typos in the source code (Reported in Bug #54065)Pierrick Charron2011-04-031-1/+1
| | | | | | | # External libraries were excluded # Thanks eitan at eitanadler dot com for the first patch :)
* - Year++Felipe Pena2011-01-011-1/+1
|
* - use TSRMLS_D/C with php_stream_context_allocPierre Joye2010-09-161-1/+1
|
* - use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insert, missing headerPierre Joye2010-09-161-1/+1
|
* - use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insertPierre Joye2010-09-161-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - Switching to TSRMLS_FETCH versionFelipe Pena2009-11-161-1/+1
|
* - Fixed bug #49936 (crash with ftp stream in php_stream_context_get_option())Felipe Pena2009-11-151-1/+1
| | | | | (patch by Pierrick)
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* 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.