vote up 1 vote down star
1

I was wondering how can I set a timeout on a socket_read call? The first time it calls socket_read, it waits till data is sent, and if no data is sent within 5 secs I want to shutdown the connection. Any Help? I already tried "SO_RCVTIMEO" with no luck.

Im creating a socket with socket_create() and listening on it for connections, then when connected I listen for the data and then do something with it. When the timeout hits, I want to run socket_shutdown() and then socket_close().

Thanks, James Hartig

flag

57% accept rate

3 Answers

vote up 0 vote down

http://us2.php.net/manual/en/function.stream-set-timeout.php

link|flag
that doesn't work on socket_create() sockets, at least it doesn't seem to work – James Hartig Dec 23 '08 at 18:23
vote up 0 vote down

Have you tried socket_set_option with SO_RCVTIMEO

Timeout value for input operations.

link|flag
I tried! I think I found a solution with socket_listen and a manual timeout with time()+2 and a while. – James Hartig Dec 23 '08 at 19:09
vote up 1 vote down

I did a socket_listen and then I made a manual timeout with time()+2 and a while loop with nonblock set and socket_read() inside. Seems to be working ok. Any alternatives?

link|flag
Oooh, you're accepting socket connections with PHP. That's a bit different. us3.php.net/manual/en/… Select will return sockets if there is anything available to be read, otherwise time out with your specified timeout. – Steven Behnke Dec 23 '08 at 19:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.