Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH | foobar | 2003-06-27 | 1 | -3/+3 |
| | |||||
* | Probable fix for #23567 - pfsockopen returns dead connection. | Wez Furlong | 2003-05-12 | 1 | -0/+3 |
| | | | | | # Just need to verify under win32 | ||||
* | MFH: Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Fix for #19508 by poleson@verio.net. | Wez Furlong | 2002-10-29 | 1 | -1/+6 |
| | |||||
* | Revert to 1.34. | Sebastian Bergmann | 2002-10-14 | 1 | -18/+18 |
| | |||||
* | Whitespace fixes. | Sebastian Bergmann | 2002-10-14 | 1 | -18/+18 |
| | |||||
* | Fix Win32 build. | Sebastian Bergmann | 2002-10-14 | 1 | -3/+0 |
| | |||||
* | A much better probable fix for #16114. | Wez Furlong | 2002-10-13 | 1 | -0/+11 |
| | |||||
* | (php_socket_errno) win32 errno compatible macro. | Wez Furlong | 2002-10-13 | 1 | -2/+7 |
| | | | | | | (php_socket_strerror) win32 compatible strerror replacement. Add an E_NOTICE when a socket write fails. | ||||
* | EOF related fixes. | Wez Furlong | 2002-10-05 | 1 | -1/+0 |
| | |||||
* | remove chunk size setting code (it's now in streams.c). | Wez Furlong | 2002-09-28 | 1 | -4/+0 |
| | | | | | Move timeout setting code. | ||||
* | Implement persistent streams. (for pfsockopen). | Wez Furlong | 2002-09-25 | 1 | -3/+3 |
| | | | | | | Juggle some includes/definitions. Tidy up streams use in ext/standard/file.c | ||||
* | Implement read buffering in streams. | Wez Furlong | 2002-09-23 | 1 | -5/+0 |
| | | | | | | | | | | | | 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. | ||||
* | made new ssl activate function the default. | Stefan Esser | 2002-09-12 | 1 | -3/+2 |
| | |||||
* | Added possibility to reuse an old SSL session id. | Stefan Esser | 2002-09-08 | 1 | -1/+2 |
| | | | | | Ugly but needed for f.e.: debians ftpd-ssl | ||||
* | Fix ZTS build. | Sebastian Bergmann | 2002-08-25 | 1 | -1/+1 |
| | |||||
* | Remove php_stream_sock_set_blocking and replace with | Wez Furlong | 2002-08-19 | 1 | -1/+0 |
| | | | | | | | | | | | php_stream_set_option which can be used in a similar way as ioctl() to set options for streams. Current options include buffering and blocking support. o Buffer control is support for stdio based streams. o Blocking/non-blocking is supported for stdio and socket based streams. | ||||
* | Switch streams socket abstraction to use a timeval structure instead of an | Jason Greene | 2002-07-22 | 1 | -2/+2 |
| | | | | | | | | integer to allow subsecond timeouts. This supports the previous behavior of fsockopen() Fixes bug #16261 | ||||
* | Fix feof() on win32 | Jason Greene | 2002-07-19 | 1 | -0/+6 |
| | | | | | Bug #18436 | ||||
* | @Impelemented timeout functionality, and fixed error handling of fsockopen() ↵ | Jason Greene | 2002-06-11 | 1 | -0/+5 |
| | | | | | | | | | on win32 Also fixed error handling on unix (micropatch) Closes Bug #14740 | ||||
* | fix for bug #16168 | Wez Furlong | 2002-03-19 | 1 | -0/+2 |
| | |||||
* | TSRMLS related work on streams, as discussed with Zeev. | Wez Furlong | 2002-03-18 | 1 | -14/+14 |
| | | | | | | # Should be the last "broad" commit for a while # Don't forget to make clean ; make | ||||
* | Streams now make more use of the memory manager, so tracking down | Wez Furlong | 2002-03-17 | 1 | -4/+16 |
| | | | | | | leaking streams should be easier. # I hate these big commits | ||||
* | tidy up the headers (streams related) | Wez Furlong | 2002-03-17 | 1 | -0/+10 |
| | |||||
* | Fix for Bug #16121: make unix socket names binary safe. | Wez Furlong | 2002-03-17 | 1 | -1/+1 |
| | | | | | | # Could be applied to 4.2 branch, but I don't have a working copy, and # I don't think it's amazingly critical. | ||||
* | This should help with some build problems/warnings under win32. | Wez Furlong | 2002-03-16 | 1 | -0/+9 |
| | | | | | | | Someone still needs to add the streams.c file to the MSVC project/workspace though (there are so many that I don't really know what I am doing :-). | ||||
* | more *'s | Wez Furlong | 2002-03-16 | 1 | -8/+8 |
| | |||||
* | New PHP streams... | Wez Furlong | 2002-03-15 | 1 | -0/+54 |
| | |||||
* | Maintain headers. | Sebastian Bergmann | 2002-02-28 | 1 | -1/+1 |
| | |||||
* | Added php_sockaddr_size() in network.c (and the header file). This is used | Stig Venaas | 2002-02-10 | 1 | -0/+1 |
| | | | | | | in ftp.c to make sure connect() and bind() is called with size argument which is exactly the size of the relevant sockaddr_xx structure | ||||
* | hostconnect now divides the timeout with no. of addresses. If a connection | Stig Venaas | 2002-01-06 | 1 | -0/+1 |
| | | | | | | attempt times out, it goes on to the next. Unless each timeout would be <5s. Added php_any_addr() that fills out the any address for IPv6 and IPv4. | ||||
* | Added some consts for arguments in network.c declarations. Moved | Stig Venaas | 2002-01-06 | 1 | -2/+10 |
| | | | | | | php_sockaddr_storage to php_network.h and added check for struct sockaddr_storage | ||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | Fixed Andi's build problem. | Wez Furlong | 2001-05-05 | 1 | -0/+4 |
| | |||||
* | Nuke buffering from php_streams, move connect_nonb() from fsock.c to network.c | Wez Furlong | 2001-05-05 | 1 | -0/+20 |
| | | | | | | | | and rename to php_connect_nonb(). Use php_connect_nonb() instead of connect() in php_hostconnect() -> timeouts should now work in php_hostconnect(). sock streams abstraction now uses php_sockbuf as the "abstract" pointer. | ||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | - Remove track_vars - it is now always on | Zeev Suraski | 2000-09-05 | 1 | -1/+6 |
| | | | | | | | - Make the various $HTTP_*_VARS[] arrays be defined always, even if they're empty - Fix Win32 build and warnings | ||||
* | renamed hostconnect() to php_hostconnect() | Stig Venaas | 2000-09-05 | 1 | -1/+1 |
| | |||||
* | Added timeout argument, but not used yet | Stig Venaas | 2000-09-03 | 1 | -1/+1 |
| | |||||
* | To be included by code using functions in network.c | Stig Venaas | 2000-09-03 | 1 | -0/+27 |