summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #22485 (hardcoded shared lib extensions)foobar2003-03-021-8/+8
|
* - Optimize $_REQUESTZeev Suraski2003-03-021-0/+2
| | | | | - Fix phpinfo()
* Fix build for activescript sapiWez Furlong2003-03-021-0/+2
|
* Add JIT initialization for _SERVER and _ENVZeev Suraski2003-03-022-5/+1
| | | | | | (it's less important for the others, even though it should be fairly easy now too)
* Fixed my silly mistake in the filter codeMoriyoshi Koizumi2003-03-021-1/+1
|
* Fix two crash bugs when optional parameters are not specified.Wez Furlong2003-03-011-11/+21
| | | | | Fix folding markers.
* update credits (ilia,myself)Pierre Joye2003-03-011-1/+1
|
* Expose php_stream_copy_to_stream as stream_copy_to_stream(); a highWez Furlong2003-03-013-0/+22
| | | | | performance alternative to looping reads and writes.
* Tidy up stupid signed/unsigned issues with win32 by introducing a ↵Wez Furlong2003-02-283-13/+16
| | | | php_socket_t typedef.
* Add this file...Wez Furlong2003-02-281-0/+54
|
* New user-space functions:Wez Furlong2003-02-287-26/+299
| | | | | | | | | | | . stream_socket_client() - similar to fsockopen(), but more powerful. . stream_socket_server() - Creates a server socket. . stream_socket_accept() - Accept a client connection. . stream_socket_get_name() - Get local or remote name of socket. Tidy up some leaks and debug printfs. Move more streams functions into streamsfuncs.c and streamsfuncs.h.
* Fixed compiler warnings.Ilia Alshanetsky2003-02-282-5/+5
|
* it is still to early in the morning for coding :(Hartmut Holzgraefe2003-02-281-0/+1
|
* make sure that GNU extensions exist for fnmatch()Hartmut Holzgraefe2003-02-281-0/+2
|
* - Fixed bug #22312 (crash on failed connection when curl_getinfo() was called).foobar2003-02-281-40/+62
| | | | | (Phil Oleson <poleson@verio.net>)
* - No need to include the ssl headers elsewhere but in ext/opensslfoobar2003-02-283-0/+9
| | | | | # ext/ftp doesn't use streams yet so it needs to include them.
* YAZ 2.0 or later is required now.foobar2003-02-282-6/+6
|
* ws & CSfoobar2003-02-282-631/+536
|
* Fixed compiler warning.Ilia Alshanetsky2003-02-271-1/+1
|
* fixed compiler warnings.Ilia Alshanetsky2003-02-271-0/+5
|
* streams.c -> streamsfuncs.cWez Furlong2003-02-271-1/+1
| | | | | # argh!
* Update win32 build.Wez Furlong2003-02-271-0/+0
| | | | | Since msvc sucks, I had to rename ext/standard/streams.c to ext/standed/streamsfuncs.c
* Move streams specific stuff from ext/standard/file.c -> ext/standard/streams.cWez Furlong2003-02-274-859/+753
| | | | | | Move win32 select implementation into win32/. Will update win32 build in a moment.
* Fixed a bug that would cause filetype() to return "unknown" forIlia Alshanetsky2003-02-271-2/+3
| | | | | non-existent files on Win32.
* Add a generic meta data api for streams.Wez Furlong2003-02-271-11/+1
|
* - Move https:// and ftps:// wrapper registration into the openssl module.Wez Furlong2003-02-276-14/+11
| | | | | | - Expose the http:// and ftp:// wrappers as PHPAPI - Remove unused variables
* Another big commit (tm).Wez Furlong2003-02-2711-242/+574
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Main Changes: - Implement a socket transport layer for use by all code that needs to open some kind of "special" socket for network or IPC. - Extensions can register (and override) transports. - Implement ftruncate() on streams via the ioctl-alike option interface. - Implement mmap() on streams via the ioctl-alike option interface. - Implement generic crypto API via the ioctl-alike option interface. (currently only supports OpenSSL, but could support other SSL toolkits, and other crypto transport protocols). Impact: - tcp sockets can be overloaded by the openssl capable sockets at runtime, removing the link-time requirement for ssl:// and https:// sockets and streams. - checking stream types using PHP_STREAM_IS_SOCKET is deprecated, since there are now a range of possible socket-type streams. Working towards: - socket servers using the new transport layer - mmap support under win32 - Cleaner code. # I will be updating the win32 build to add the new files shortly # after this commit.
* Fixed bug #21410 (fixed handling of NULL or "" files on Win32)Ilia Alshanetsky2003-02-271-0/+4
|
* changed from strncpy to strlcpy on requestHartmut Holzgraefe2003-02-271-2/+1
|
* - Changed maxmsglen in ifx_errormsg() back to normal 255 instead of 10Corne' Cornelius2003-02-271-1/+1
|
* - Fixed possible Segfault in ifx_errormsg() using malloc() instead of emalloc()Corne' Cornelius2003-02-271-6/+5
|
* add imagesavealpha wrapper (Jukka Holappa <jukkaho@mail.student.oulu.fi>,Pierre Joye2003-02-261-115/+137
| | | | | 2 Pierre-Alain Joye)
* add imagesavealpha wrapper (Jukka Holappa <jukkaho@mail.student.oulu.fi>,Pierre Joye2003-02-261-1/+2
| | | | | Pierre-Alain Joye)
* 1) Make the output of system() binary safeIlia Alshanetsky2003-02-262-198/+120
| | | | | | | | | | | | | 2) Solved a memory leak when the return_value variable passed by reference is not an integer in system()/exec()/passthru(). 3) Solved a bug in exec(), which would make it append to the 2nd parameter (passed by reference) if the parameter is an array instead of overwriting it. 4) Changed the code to use the streams code, resulting in a smaller code base. 5) Various cleanups resulting in reduction of overall code base inside the file by ~ 1/3. 6) Speed improvements of ~2.5 times compared to previous performance (based on attached PHP script).
* allow keys as array(group, name) for handler inifileMarcus Boerger2003-02-261-17/+99
|
* wsMarcus Boerger2003-02-261-11/+19
|
* make it fasterMarcus Boerger2003-02-261-11/+2
|
* if skip param of dba_fetch is -1 stop do not restart search after last elementMarcus Boerger2003-02-261-3/+3
|
* - Added an extra ini setting with which extra commands can be forced toDerick Rethans2003-02-261-1/+4
| | | | | | | | | | | the sendmail deamon on a per-vhost base. The value in this ini setting will override all extra commands passed as the 5th parameter to mail() and will work in Safe Mode. @- Added an extra ini setting (mail_force_extra_paramaters) which forces @ the addition of the specified parameters to be passed as extra @ parameters to the sendmail binary. These parameters will always replace @ the value of the 5th parameter to mail(), even in safe mode. (Derick)
* - Fix protoDerick Rethans2003-02-261-1/+1
|
* - WhitespaceDerick Rethans2003-02-261-4/+4
|
* changed to emalloc just to be safeHartmut Holzgraefe2003-02-261-2/+2
|
* changes in the past shouldn't have compiled.Brad LaFountain2003-02-263-31/+32
|
* Made shell_exec() use streams, this simplifies the code and in some casesIlia Alshanetsky2003-02-251-15/+11
| | | | | makes it a little faster too.
* MFH (forgot to put this fix into the 5.X tree).Ilia Alshanetsky2003-02-251-0/+3
|
* Set fgetss() free from the length parameterMoriyoshi Koizumi2003-02-251-18/+26
|
* Fixed test.Ilia Alshanetsky2003-02-251-2/+3
|
* Fixed bug #22414 and added a test case for it.Ilia Alshanetsky2003-02-252-1/+38
|
* Cleanupfoobar2003-02-251-7/+6
|
* TabifyAdam Dickmeiss2003-02-251-142/+142
|