Re: [PHP-DEV] Socket Timeout Documentation

2009-07-08 Thread Richard Lynch
On Tue, July 7, 2009 4:48 am, Hannes Magnusson wrote: > On Thu, Jul 2, 2009 at 01:01, Brian A. > Seklecki wrote: >> All: >> >> Perhaps we should clarify the socket tuneables such as: >> >>  ; Default timeout for socket based streams (seconds) >>  default_socket_timeout = 60 >> >> These are slightly

Re: [PHP-DEV] Socket Timeout Documentation

2009-07-07 Thread Wez Furlong
This option sets the default value for the timeout, as though you manually called stream_set_timeout on the stream. The behavior is equivalent to using select() to wait for up to the timeout duration prior to a read or write operation. PHP does not implement "idle" timeouts; that's an application

Re: [PHP-DEV] Socket Timeout Documentation

2009-07-07 Thread Hannes Magnusson
On Thu, Jul 2, 2009 at 01:01, Brian A. Seklecki wrote: > All: > > Perhaps we should clarify the socket tuneables such as: > >  ; Default timeout for socket based streams (seconds) >  default_socket_timeout = 60 > > These are slightly ambiguous.  e.g., we should clarify connect() > timeouts v.s. "id

[PHP-DEV] Socket Timeout Documentation

2009-07-01 Thread Brian A. Seklecki
All: Perhaps we should clarify the socket tuneables such as: ; Default timeout for socket based streams (seconds) default_socket_timeout = 60 These are slightly ambiguous. e.g., we should clarify connect() timeouts v.s. "idle" timeouts. There are at least a dozen tickets open related to