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

2002-10-13 Thread Sebastian Bergmann

Wez Furlong wrote:
 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.

  The Win32 build is broken, because SD_RECEIVE seems to be unknown here:

c:\home\php\php4\main\network.c(974): error C2065:
'SD_RECEIVE': Undeclared identifier

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




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

2002-08-13 Thread Edin Kadribasic

Hello Dan,

Wasn't there an agreement that the timout is going to be a an .ini
setting whith a default value of 60?

Edin

- Original Message -
From: Dan Kalowsky [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 13, 2002 4:39 PM
Subject: [PHP-CVS] cvs: php4 /main network.c


 kalowsky Tue Aug 13 10:39:03 2002 EDT

   Modified files:
 /php4/main network.c
   Log:
   Bug Fix #16113, as reflective of a php-dev convo between wez and
iliaa


 Index: php4/main/network.c
 diff -u php4/main/network.c:1.57 php4/main/network.c:1.58
 --- php4/main/network.c:1.57 Sun Aug 11 07:25:24 2002
 +++ php4/main/network.c Tue Aug 13 10:39:03 2002
 @@ -15,7 +15,7 @@
 | Author: Stig Venaas [EMAIL PROTECTED]
|

+---
---+
   */
 -/* $Id: network.c,v 1.57 2002/08/11 11:25:24 wez Exp $ */
 +/* $Id: network.c,v 1.58 2002/08/13 14:39:03 kalowsky Exp $ */

  /*#define DEBUG_MAIN_NETWORK 1*/
  #define MAX_CHUNKS_PER_READ 10
 @@ -515,7 +515,7 @@

   sock-is_blocked = 1;
   sock-chunk_size = FG(def_chunk_size);
 - sock-timeout.tv_sec = -1;
 + sock-timeout.tv_sec = 60;
   sock-socket = socket;

   stream = php_stream_alloc_rel(php_stream_socket_ops, sock,
persistent, r+);



 --
 PHP CVS Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




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

2002-08-13 Thread Dan Kalowsky

There was a suggestion, I don't remember if it was agreed upon or not.
Regardless as I see it this is still a bug, and until an ini value is
added, this shouldn't be allowed out as-is in the next release.

If an ini value is added by that time though, it would be nice :)

On Tue, 13 Aug 2002, Edin Kadribasic wrote:

 Hello Dan,

 Wasn't there an agreement that the timout is going to be a an .ini
 setting whith a default value of 60?

 Edin

 - Original Message -
 From: Dan Kalowsky [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 13, 2002 4:39 PM
 Subject: [PHP-CVS] cvs: php4 /main network.c


  kalowsky Tue Aug 13 10:39:03 2002 EDT
 
Modified files:
  /php4/main network.c
Log:
Bug Fix #16113, as reflective of a php-dev convo between wez and
 iliaa
 
 
  Index: php4/main/network.c
  diff -u php4/main/network.c:1.57 php4/main/network.c:1.58
  --- php4/main/network.c:1.57 Sun Aug 11 07:25:24 2002
  +++ php4/main/network.c Tue Aug 13 10:39:03 2002
  @@ -15,7 +15,7 @@
  | Author: Stig Venaas [EMAIL PROTECTED]
 |
 
 +---
 ---+
*/
  -/* $Id: network.c,v 1.57 2002/08/11 11:25:24 wez Exp $ */
  +/* $Id: network.c,v 1.58 2002/08/13 14:39:03 kalowsky Exp $ */
 
   /*#define DEBUG_MAIN_NETWORK 1*/
   #define MAX_CHUNKS_PER_READ 10
  @@ -515,7 +515,7 @@
 
sock-is_blocked = 1;
sock-chunk_size = FG(def_chunk_size);
  - sock-timeout.tv_sec = -1;
  + sock-timeout.tv_sec = 60;
sock-socket = socket;
 
stream = php_stream_alloc_rel(php_stream_socket_ops, sock,
 persistent, r+);
 
 
 
  --
  PHP CVS Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 


---
Dan KalowskyA little less conversation,
http://www.deadmime.org/~danka little more action.
[EMAIL PROTECTED]- A Little Less Conversation,
[EMAIL PROTECTED]Elvis Presley


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




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

2002-03-17 Thread Yasuo Ohgaki

Read previous posts for the reason and proper fixes.

Jim Winstead wrote:
 please knock off this pointless ranting about ANSI compliance.
 
 jim

Feel free to change CODING_STANDARD :)

But, one _MUST_ change rule frist.
Don't argue it was broken for a long time. ;)

--
Yasuo Ohgaki


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




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

2002-03-16 Thread Jim Winstead

Yasuo Ohgaki [EMAIL PROTECTED] wrote:
 Feel free to shoot me showing including stddef.h confirms
 ANSI C standard :)

the gnu c library documentation indicates that stddef.h and
ptrdiff_t are part of the ansi c standard.

http://www.aquaphoenix.com/ref/gnu_c_library/libc_483.html

jim

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php