summaryrefslogtreecommitdiff
path: root/main/memory_streams.c
Commit message (Collapse)AuthorAgeFilesLines
* Move streams files around a bit, to ease maintenance.Wez Furlong2003-02-161-472/+0
| | | | | I will update the win32 .dsp in a moment.
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* wb -> r+bWez Furlong2002-11-181-2/+2
|
* style fixMoriyoshi Koizumi2002-10-201-2/+4
|
* This seems to resolve the issues with fgets.Wez Furlong2002-10-051-8/+2
| | | | | | | | I've moved EOF detection into the streams layer; a stream reader implementation should set stream->eof when it detects EOF. Fixed test for user streams - it still fails but that is due to an output buffering bug.
* Revise buffer/seek code a little.Wez Furlong2002-09-231-2/+7
| | | | | | Tidy up user streams even more. Make test case quite aggressive.
* Implement read buffering in streams.Wez Furlong2002-09-231-53/+14
| | | | | | | | | | | | Eliminate similar code from network.c. Implement fgets equivalent at the streams level, which can detect the mac, dos and unix line endings and handle them appropriately. The default behaviour is unix (and dos) line endings. An ini option to control this behaviour will follow. # Don't forget to make clean! # I've done some testing but would appreciate feedback from # people with scripts/extensions that seek around a lot.
* - No C++ commentsDerick Rethans2002-07-011-1/+1
|
* main/streams.cWez Furlong2002-04-021-7/+13
|
* Phase 3 of OO wrapper cleanupWez Furlong2002-03-281-2/+4
| | | | | # What was phase 2?
* -missing efree in closeMarcus Boerger2002-03-211-20/+18
|
* #uups commit on wrong fileMarcus Boerger2002-03-211-1/+1
|
* -fix missing efreeMarcus Boerger2002-03-211-1/+1
|
* fixed signed/unsigned comparison warningsHarald Radi2002-03-201-4/+4
|
* Improve behaviour of the stream casting operation.Wez Furlong2002-03-191-4/+42
| | | | | Improve interaction with fopencookie.
* Possibly fix a crash - Marcus, please take a look at it...Zeev Suraski2002-03-191-0/+1
|
* - Fix whitespace (guys, please try to stick with the php4 tree style as farZeev Suraski2002-03-191-40/+108
| | | | | | | as indentation/newlines go, and also as far as using {} even on if's that have single statements) - Fix Windows build
* TSRMLS related work on streams, as discussed with Zeev.Wez Furlong2002-03-181-22/+21
| | | | | | # Should be the last "broad" commit for a while # Don't forget to make clean ; make
* fix TSRM buildWez Furlong2002-03-181-0/+1
|
* tidyup use of STREAMS_DC macrosWez Furlong2002-03-181-3/+3
|
* -temp streams are now clean (Thanks to Wez)Marcus Boerger2002-03-181-182/+115
|
* -added temporary streamsMarcus Boerger2002-03-171-22/+297
| | | | | | -added stream debug code #should be used from php_stream_make_seekable
* -added memory streamsMarcus Boerger2002-03-161-0/+189
@added memory streams (marcus)