summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* socket_write() should just use the standard socket error macro so that ↵Jason Greene2002-05-021-2/+1
| | | | errors will be consistent if the macro ever changes
* Fix build.Sebastian Bergmann2002-05-021-2/+2
|
* updated cgi warning notice.James Cox2002-05-021-0/+2
|
* Update commentZeev Suraski2002-05-021-4/+8
|
* Change nest level to send Content-Length again. It seems this is theYasuo Ohgaki2002-05-021-2/+11
| | | | | | | | | | | | | | | | best setting for now. PHP will not send Content-Length always. It only sends when it is possible to send. output_buffer=0 is supposed to disable chunked output, but it seems it does not disable. It also behaves a litte strange way. This should be addressed someday. It is possible Content-Length header is not set. If it happens, try to increase chunk size for now. (i.e. output_buffer=40960) I included a little debug code for me and other develpers to play with, when (NestLevel==1 && ObStatus==5), PHP sends Content-Length.
* remove temporary resources immediatelyHarald Radi2002-05-022-34/+44
| | | | | | | return value fix #thanks to alan for 'remote debugging'
* Readd warningSascha Schumann2002-05-021-0/+6
| | | | | | | If Mr. Taskinen feels like removing it again, he can commence a discussion. Otherwise, I'll personally disable his CVS account immediately.
* in6addr_any is defined as extern in IRIX header files, but is not actuallySascha Schumann2002-05-021-3/+3
| | | | | | | | | | contained in any library (sigh). Make this check fail, if the link stage does not succeed. Also avoid GCC optimization which drops the reference to ip6addr_any. Tested on IRIX 6.5.15.
* - Add Zend API No. to phpinofo() outputDerick Rethans2002-05-021-0/+6
|
* Stop the search when the libs are found.foobar2002-05-021-1/+2
|
* Install pear.batTomas V.V.Cox2002-05-021-0/+1
| | | | | # Please Windows hackers test the pear installer support!
* I could swear it worked the other way before I committed.Sebastian Bergmann2002-05-022-7/+7
|
* untabifyTomas V.V.Cox2002-05-021-23/+23
|
* englishify.James Cox2002-05-021-2/+2
|
* Add config.w32.h.Sebastian Bergmann2002-05-020-0/+0
|
* Oops.Sebastian Bergmann2002-05-021-9/+9
|
* Fugbix typos.Sebastian Bergmann2002-05-021-1/+1
|
* The Windows build can now be configures more comfortably, for instance in ↵Sebastian Bergmann2002-05-024-27/+115
| | | | regard to built-in extensions.
* Remove bogus warning.foobar2002-05-021-5/+0
|
* Sync with PHP_4_2_0 branch.foobar2002-05-021-6/+8
|
* Fixed header output. Only need to output header when it is actually sent to ↵Yasuo Ohgaki2002-05-021-3/+3
| | | | client.
* Revert the previous commit (revision 1.40).Jon Parise2002-05-021-1/+1
| | | | | | | | | | @bindir@ ended up becoming '${exec_prefix}' (literally) on my system (FreeBSD 4.5), thus producing a broken shebang line. @prefix@ works fine for me here. If @bindir@ is indeed preferred, the substitution problem noted above needs to be resolved before the change is reapplied.
* Check buffer statusYasuo Ohgaki2002-05-021-1/+2
|
* Make Content-Type output always correct.Yasuo Ohgaki2002-05-022-3/+4
| | | | | # Flushing buffer is needed to be fixed properly anyway...
* Modify NEWS entry for Content-Length header changeYasuo Ohgaki2002-05-021-1/+1
|
* Move Content-Length: header handling from zlib.c to output.cYasuo Ohgaki2002-05-022-18/+16
| | | | | | When output buffer is enabled and header can be sent, Content-Length: header is added always from now on.
* NEWS update2002-05-021-0/+5
|
* ChangeLog update2002-05-021-0/+81
|
* - Fix String is not zero-terminated error in base64_decodeDerick Rethans2002-05-011-1/+1
|
* - Update protos for socket_read() and socket_write().Markus Fischer2002-05-011-3/+3
| | | | | - Set last_error in socket_write().
* - Update protos for getpeer/getsock-name.Markus Fischer2002-05-011-2/+2
|
* Fix BYREF_FORCE that was not being readJason Greene2002-05-011-2/+2
| | | | | Fix error message
* Add a big disclaimer regarding register_globals. It just bit me againSascha Schumann2002-05-011-0/+6
| | | | | but now on a live customer site :-/
* - Rename setopt and getopt to set_option and get_option, provide alias.Markus Fischer2002-05-012-8/+13
|
* - Fix couple of problems with socket_create_pair():Markus Fischer2002-05-011-8/+12
| | | | | | | | | | - Force fourth argument to be passed by reference - Since the argument is modified there is no need to force it to be an array since it's destroyed anyway - Only modify the argument if socketpair() was successfully - Fix string modified for error message message - Set global last_error when socketpair() fails
* - Add SOMAXCONN constant.Markus Fischer2002-05-011-0/+1
|
* Fix for #16885Wez Furlong2002-05-011-0/+2
|
* Probable fix for #16940.Wez Furlong2002-05-011-3/+6
|
* - WS fixesMarkus Fischer2002-05-011-9/+9
|
* Changed socket_select to force reference copy, the older code would modify ↵Jason Greene2002-05-011-1/+5
| | | | | | | | | | | | | all references @Fixed a bug in socket_select() that could cause unexpected behavior when using a statement @ like $w=$e=array($sock); @This change unfortunately prevents the use of constant values(NULL) for the socket array paramaters. @Instead use a temporary variable or an expression with the leftmost member being a temporary variable. @ ex. socket_select($w, $r, $e=NULL, 10); Also fix small memory leak.
* ChangeLog update2002-05-012-0/+133
|
* ZE2 compatibility fixesHarald Radi2002-04-301-8/+8
|
* - Forgot to update protoMarkus Fischer2002-04-301-1/+1
|
* - Allow resetting the module global last_error too.Markus Fischer2002-04-301-6/+9
|
* More unused variables.Sebastian Bergmann2002-04-302-6/+6
|
* Fix ZE1 buildStanislav Malyshev2002-04-301-2/+2
|
* Fix ZTS build. Remove unused variables.Sebastian Bergmann2002-04-301-4/+4
|
* Add missing #define's.Sebastian Bergmann2002-04-301-0/+4
|
* # fooblahHarald Radi2002-04-301-0/+6
|
* Add new ext/mbstring/mbfilter_*.c files.Sebastian Bergmann2002-04-302-0/+24
|