[PHP-CVS] cvs: php4 /main network.c

2003-03-08 Thread Marcus Boerger
helly Sat Mar 8 11:53:54 2003 EDT Modified files: /php4/main network.c Log: fix warnings - one left Index: php4/main/network.c diff -u php4/main/network.c:1.97 php4/main/network.c:1.98 --- php4/main/network.c:1.97Sat Mar 1 13:47:18 2003 +++

[PHP-CVS] cvs: php4 /main network.c

2003-03-01 Thread Moriyoshi Koizumi
moriyoshi Sat Mar 1 10:49:06 2003 EDT Modified files: /php4/main network.c Log: Fixed build Index: php4/main/network.c diff -u php4/main/network.c:1.95 php4/main/network.c:1.96 --- php4/main/network.c:1.95Fri Feb 28 16:03:36 2003 +++

Re: [PHP-CVS] cvs: php4 /main network.c

2003-03-01 Thread Wez Furlong
Does that really fix it? If you have IPV6 but no inet_ntop, then there is no way to determine the socket/peer name. I'd rather the build broke in that situation and prompt someone with such a strange system to add the correct code to tranform an ipv6 address into a human readable form. --Wez.

Re: [PHP-CVS] cvs: php4 /main network.c

2003-03-01 Thread Moriyoshi Koizumi
Hmm, now I figured out the compile failure occurred because I forgot to reconfigure after cvs update. However before my patching the code was if (textaddr) { #if HAVE_IPV6 HAVE_INET_NTOP char abuf[256]; #endif [snip] #if HAVE_IPV6 case AF_INET6: buf =

Re: [PHP-CVS] cvs: php4 /main network.c

2003-03-01 Thread Wez Furlong
Yes, please revert. --Wez. On Sun, 2 Mar 2003, Moriyoshi Koizumi wrote: Hmm, now I figured out the compile failure occurred because I forgot to reconfigure after cvs update. However before my patching the code was if (textaddr) { #if HAVE_IPV6 HAVE_INET_NTOP char abuf[256];

[PHP-CVS] cvs: php4 /main network.c

2003-03-01 Thread Moriyoshi Koizumi
moriyoshi Sat Mar 1 13:47:19 2003 EDT Modified files: /php4/main network.c Log: Reverted my previous commit Index: php4/main/network.c diff -u php4/main/network.c:1.96 php4/main/network.c:1.97 --- php4/main/network.c:1.96Sat Mar 1 10:49:06 2003

[PHP-CVS] cvs: php4 /main network.c /main/streams transports.c xp_socket.c /win32 php4dllts.dsp

2003-02-27 Thread Wez Furlong
wez Thu Feb 27 13:06:32 2003 EDT Modified files: /php4/main network.c /php4/main/streams transports.c xp_socket.c /php4/win32 php4dllts.dsp Log: Fixup build for win32 Index: php4/main/network.c diff -u php4/main/network.c:1.91

[PHP-CVS] cvs: php4 /main network.c

2003-02-27 Thread Ilia Alshanetsky
iliaa Thu Feb 27 19:08:00 2003 EDT Modified files: /php4/main network.c Log: compiler warning fixed. Index: php4/main/network.c diff -u php4/main/network.c:1.92 php4/main/network.c:1.93 --- php4/main/network.c:1.92Thu Feb 27 13:06:30 2003 +++

[PHP-CVS] cvs: php4 /main network.c /win32 php4dllts.dsp

2003-02-21 Thread Wez Furlong
wez Fri Feb 21 09:06:56 2003 EDT Modified files: /php4/main network.c /php4/win32 php4dllts.dsp Log: Add comment about thread-safety of gethostbyname on win32. Set the correct path to the win32 config.h file in the .dsp file. Index:

[PHP-CVS] cvs: php4 /main network.c

2003-02-13 Thread Wez Furlong
wez Thu Feb 13 09:35:48 2003 EDT Modified files: /php4/main network.c Log: Potential fixes for #21809 and #22099. Index: php4/main/network.c diff -u php4/main/network.c:1.85 php4/main/network.c:1.86 --- php4/main/network.c:1.85Tue Dec 31 10:58:52

[PHP-CVS] cvs: php4 /main network.c

2002-12-22 Thread Wez Furlong
wez Sun Dec 22 08:55:46 2002 EDT Modified files: /php4/main network.c Log: A Simple fix for Bug #12360 (fsockopen timeout doesn't work). Analysis: On systems with HAVE_GETADDRINFO and IPV6 support, php_hostconnect would attempt to connect to each

[PHP-CVS] cvs: php4 /main network.c

2002-10-13 Thread Wez Furlong
wez Sun Oct 13 19:21:06 2002 EDT Modified files: /php4/main network.c Log: Probable fix for #16114 Index: php4/main/network.c diff -u php4/main/network.c:1.75 php4/main/network.c:1.76 --- php4/main/network.c:1.75Sun Oct 13 18:01:39 2002 +++

[PHP-CVS] cvs: php4 /main network.c php_network.h

2002-10-13 Thread Wez Furlong
wez Sun Oct 13 19:43:21 2002 EDT Modified files: /php4/main network.c php_network.h Log: A much better probable fix for #16114. Index: php4/main/network.c diff -u php4/main/network.c:1.76 php4/main/network.c:1.77 --- php4/main/network.c:1.76Sun Oct

[PHP-CVS] cvs: php4 /main network.c

2002-10-13 Thread Wez Furlong
wez Sun Oct 13 21:27:43 2002 EDT Modified files: /php4/main network.c Log: Implement better SSL error handling. Index: php4/main/network.c diff -u php4/main/network.c:1.77 php4/main/network.c:1.78 --- php4/main/network.c:1.77Sun Oct 13 19:43:21

[PHP-CVS] cvs: php4 /main network.c php_streams.h streams.c

2002-10-04 Thread Sascha Schumann
sas Fri Oct 4 14:21:40 2002 EDT Modified files: /php4/main network.c php_streams.h streams.c Log: Improve the general behaviour of stream_gets and fix its semantics with regard to sockets. The behaviour should be aligned with PHP 4.2 now. This has been

Re: [PHP-CVS] cvs: php4 /main network.c php_streams.h streams.c

2002-10-04 Thread Marcus Börger
No good idea it broke at least exif which was the first extension that changed to streams. marcus At 20:21 04.10.2002, Sascha Schumann wrote: sas Fri Oct 4 14:21:40 2002 EDT Modified files: /php4/main network.c php_streams.h streams.c Log: Improve the general

Re: [PHP-CVS] cvs: php4 /main network.c php_streams.h streams.c

2002-10-04 Thread Sascha Schumann
On Fri, 4 Oct 2002, Marcus Börger wrote: No good idea it broke at least exif which was the first extension that changed to streams. Test case? The results should not have changed with regard to normal file IO. - Sascha -- PHP CVS Mailing List (http://www.php.net/) To

[PHP-CVS] cvs: php4 /main network.c streams.c

2002-10-04 Thread Sascha Schumann
sas Fri Oct 4 15:08:43 2002 EDT Modified files: /php4/main network.c streams.c Log: Add a few notes Index: php4/main/network.c diff -u php4/main/network.c:1.72 php4/main/network.c:1.73 --- php4/main/network.c:1.72Fri Oct 4 14:59:34 2002 +++

[PHP-CVS] cvs: php4 /main network.c php_network.h

2002-09-28 Thread Wez Furlong
wez Sat Sep 28 18:12:23 2002 EDT Modified files: /php4/main network.c php_network.h Log: remove chunk size setting code (it's now in streams.c). Move timeout setting code. Index: php4/main/network.c diff -u php4/main/network.c:1.69