summaryrefslogtreecommitdiff
path: root/ext
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
* remove temporary resources immediatelyHarald Radi2002-05-022-34/+44
| | | | | | | return value fix #thanks to alan for 'remote debugging'
* - 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
|
* Move Content-Length: header handling from zlib.c to output.cYasuo Ohgaki2002-05-021-18/+3
| | | | | | When output buffer is enabled and header can be sent, Content-Length: header is added always from now on.
* - 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
* - 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.
* 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
|
* Touch fileSascha Schumann2002-04-301-1/+1
|
* reverting the cursor change as it seems to break many ODBC drivers.Dan Kalowsky2002-04-301-2/+2
|
* fixed compile warning with Visual C++.Rui Hirokawa2002-04-302-10/+10
|
* added simplified chinese, traditional chinese, korean support to mbstring. ↵Rui Hirokawa2002-04-3014-9/+26336
| | | | Note that this feature is experimental.
* ZE2 compatibility fixStanislav Malyshev2002-04-301-6/+7
|
* ZE2 compatibility fixesStanislav Malyshev2002-04-301-2/+4
|
* revert last bogus change. There is bug in is_file()foobar2002-04-301-1/+1
|
* - added function domxml_parser_set_keep_blanks()Uwe Steinmann2002-04-302-0/+17
|
* Adding missing files to projectFrank M. Kromann2002-04-301-0/+12
|
* Fix ZTS build.Sebastian Bergmann2002-04-301-4/+4
|
* Use ftok for message queue key.Wez Furlong2002-04-301-2/+3
|
* Make use of new flag so that we can buffer http headers when we know thatWez Furlong2002-04-301-5/+8
| | | | | the stream is not intended to be used in require/include.
* Implement user-space funtions to operate on stream contexts.Wez Furlong2002-04-303-12/+125
|
* Fix is_file test.Wez Furlong2002-04-301-1/+1
| | | | | # Is there a good reason for having the actual test in an include file??
* Never add libraries without checking that they exist and can be linked.foobar2002-04-291-2/+3
|
* RETURN_NULL() is defined with braces while RETURN_TRUEHarald Radi2002-04-292-22/+22
| | | | | | and RETURN_FALSE are defined without. seems not very consistent ?
* Add comments for the fixStanislav Malyshev2002-04-291-0/+2
|
* Fix here tooStanislav Malyshev2002-04-291-1/+1
|
* functions returned FALSE in case of error and the oo api returned NULL.Harald Radi2002-04-292-22/+22
| | | | | make them both behave equal (return NULL, as FALSE can be a valid value).
* Yet another serialization fix - for incomplete classStanislav Malyshev2002-04-291-2/+4
|
* Make it possible to use recode 3.5 too. (happy now Wez? :)foobar2002-04-292-4/+23
|
* - Fix WS and CS a bitMarkus Fischer2002-04-291-107/+108
|
* - Store last errno in the module global 'last_error' implicitelyMarkus Fischer2002-04-292-21/+50
| | | | | | | | | | - Set the global 'last_error' explicitely for functions which can't return an error withing a single socket context (socket_create and socket_select) - Modified socket_last_error() to return global modules last error if no socket resource is given - Added a couple of more E_WARNING messages in case something goes foobar so the user isn't left alone in the dark.
* Slightly alter the signature of msg_send and msg_receive so that errorWez Furlong2002-04-292-25/+49
| | | | | codes and serialized "false" messages can be distinguished.
* shlib suffix was not defind and rint() was not found without -lm.Rui Hirokawa2002-04-291-1/+2
|
* Touch generated fileSascha Schumann2002-04-281-1/+1
| | | | | # is it really so hard to remember this?
* Fix couple of nasty serializer bugs:Stanislav Malyshev2002-04-283-157/+187
| | | | | | | | | | | | | a) When array unserializer encounters less data than it expects (like: a:1:{}) it crashes. I don't understand exactly why it does, but the fact is it does. So now it should catch "}" and bail out. b) When array/object data are serialized, the count is written by hash count. However, it can be that in-loop check fails and less data than expected will then be written into the array. Which, due to a), would crash on unserialize. So now it will write empty entries in place of entries it cannot serialize (the other choice would be make two passes on the data, which I don't like).
* timestampThies C. Arntzen2002-04-281-1/+1
|