Socket timeout

L

Lee Jarvis

I am using a TCPSocket and I want the script to restart if the
connection times out. I have tried doing it myself and searched around
everywhere for a solution but I have had no luck.. Any help would be
great

tia

Lee
 
F

Francis Cianfrocca

Note: parts of this message were removed by the gateway to make it a legal Usenet post.

I am using a TCPSocket and I want the script to restart if the
connection times out. I have tried doing it myself and searched around
everywhere for a solution but I have had no luck.. Any help would be
great



What do you mean by "the connection times out"? Do you mean that the
connection has no read or write activity for some interval of time?

If you need to do that, then the Ruby/EventMachine library has that ability.
You'll need to rearrange your code to go this route, so perhaps someone else
will have a less invasive solution. If not, then look at EventMachine.
 
L

Lee Jarvis

Francis said:
What do you mean by "the connection times out"? Do you mean that the
connection has no read or write activity for some interval of time?
Yes, basically

If you need to do that, then the Ruby/EventMachine library has that
ability.
You'll need to rearrange your code to go this route, so perhaps someone
else
will have a less invasive solution. If not, then look at EventMachine.

Uh, I am editing an old program of mine which is quite large, about
1.4k+ lines, so I am trying to do it the least invasive way possible.. I
appreciate your input so quickly though. Perhaps this is the only route.

Lee
 
Y

Yohanes Santoso

Q> Francis Cianfrocca said:
Yes, basically


You can adjust the SO_RCVTIMEO and SO_SNDTIMEO socket options using
Socket#{get,set}sockopts.

However, they are susceptible to trickle attack. For example, if you
set the receive timeout to 30 seconds, then the sender can send just
one packet every 30 seconds, tying up resources on your end.

The proper solution requires application-level enforcement of
timeout. You can use the timeout library for the least invasive
mechanism to even changing the core mechanism to Ruby/EventMachine.


YS.
 
R

Roger Pack

If you're not worried about scaling then
Timeout::timeout(30) {
do stuff }

or
Thread.new {
sleep 30
if hasnt_done_anything
raise on it # scary!
end
}

maybe :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top