summaryrefslogtreecommitdiff
path: root/ext/standard/streamsfuncs.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
| |
* | Revert "Add stream_socket_crypto_info() function"Daniel Lowrey2015-03-091-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 13acb7ec653c543c56437ed417c3889fbf54f608. With the added capability to negotiate application layer protocols via the TLS ALPN extension userland needs a method to access the negotiated protocol on a given stream. The reverted commit added a new stream_socket_crypto_info() function for this purpose. This original approach was discarded in favor of using the already-existing stream_get_meta_data() API which specifically exists for just such purposes and requires the addition of no new functions.
* | Add stream_socket_crypto_info() functionDaniel Lowrey2015-02-281-0/+1
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - PHP_STREAM_OPTION_WRITE_BUFFER no longer disables the read buffer of a plainGustavo André dos Santos Lopes2011-02-191-0/+1
| | | | | | | | | | stream when 0 is given as the value. - PHP_STREAM_OPTION_WRITE_BUFFER no longer changes the chunk size in socket streams. - Added stream_set_chunk_size() function. - Some signedness fixes. - Test for commit r308474, now that it's possible to actually test it.
* - Year++Felipe Pena2011-01-011-1/+1
|
* - [doc] add stream_set_read_buffer, equivalent of stream_set_write_buffer ↵Pierre Joye2010-04-121-0/+1
| | | | for read operations. Fixing possible bad effects while reading devices. full context support is under work.
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Changed stream_resolve_include_path to use zend_resolve_pathMikko Koppanen2009-12-241-0/+1
| | | | | | backported stream_resolve_include_path to PHP 5.3 backported stream_resolve_include_path test to PHP 5.3
* MFH: Windows support for stream_socket_pair(), by moving the socketpair() ↵Kalle Sommer Nielsen2009-01-231-1/+4
| | | | implementation from ext/sockets to win32/
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Added stream_context_get_params()Arnaud Le Blanc2008-11-131-0/+1
|
* MFH: [DOC] Added stream_context_set_default() function. (Davey Shafik)Hannes Magnusson2008-08-161-0/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Add stream_supports_lock() function (Benjamin Schulz)Johannes Schlüter2007-11-201-0/+1
|
* Added ability to create local or remote (URL) user streamsDmitry Stogov2007-07-091-0/+1
| | | | | | | | | | | | | | Local user streams must not be able to open(), URLs if allow_url_include is off Implemented new function stream_is_local() [ - stream_wrapper_register() extended with additional optional argument "flags" of type long. This time only one flag is implemented - STREAM_IS_URL, that means that userstream wrapper is remote (URL). By default stream is local. - stream_is_local() is a new function that accepts stream and tell if this stream is local or remote (URL) ]
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Added function stream_socket_shutdown(). It is a wraper for system ↵Dmitry Stogov2006-12-191-0/+1
| | | | shutdown() function, that shut downs part of a full-duplex connection
* MFH: use the ZEND_ACC_DEPRECATED flag rather than custom warningsHannes Magnusson2006-06-261-1/+0
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Add stream_socket_pair(), a streams based version of socketpair().Wez Furlong2004-12-121-0/+1
| | | | | Modified patch from Vincent [six at t0x dot net]
* Added stream_filter_remove() to cancel a stream filter.Sara Golemon2004-09-141-0/+1
| | | | | | | | | | Register filters as resources when instantiated by stream_filter_(ap|pre)pend(). Export php_stream_filter_flush() internal function to wind buffered data out of a particular filter until consumed by a later filter or sent to stream->readbuffer or stream->ops->write()
* Add stream_wrapper_unregister()Sara Golemon2004-09-101-0/+2
| | | | | | | | | Disables a wrapper (user-defined or built-in) for the life of the request. Add stream_wrapper_restore() Restores the wrapper originally defined at the time the request started to the protocol name mentioned.
* Added stream_context_get_default() which returns the default context option.Wez Furlong2004-07-221-0/+2
| | | | | | | | | | You may then set options that affect streams operations for the whole script. Added stream_socket_enable_crypto() which allows you to turn on or off a crypto layer (eg: SSL/TLS) on stream, if supported by the underlying transport. Registered a bunch of constants for that.
* - 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?
* Add stream_socket_sendto and stream_socket_recvfrom which work very muchWez Furlong2003-11-291-0/+3
| | | | | like sendto() and recvfrom() syscalls.
* Implement stream_get_contents, which is somewhat akin to file_get_contents,Wez Furlong2003-10-081-0/+1
| | | | | except that it works on an already opened stream.
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* - Rename stream_register_filter() to stream_filter_register(),Derick Rethans2003-05-191-1/+1
| | | | | | stream_register_wrapper() to stream_wrapper_register() and added an alias for the latter change.
* Added stream_get_transports()Sara Golemon2003-04-041-0/+1
|
* Expose php_stream_copy_to_stream as stream_copy_to_stream(); a highWez Furlong2003-03-011-0/+2
| | | | | performance alternative to looping reads and writes.
* Add this file...Wez Furlong2003-02-281-0/+54