sysread error

A

Alfonso Caponi

Hi List,

I wrote a simple script that import a file list of hosts and try to
connect.
Before the end of the file the script exits with this error:

/usr/lib/ruby/1.8/net/protocol.rb:133:in `sysread': end of file reached
(EOFError)

I using this code to import list:

file = File.new(list,"r")
begin
while (line = file.gets)
line.chomp!
iplist.push line
end
rescue EOFError
f.close
end

Can you help me please?
Thank you very much

Al
 
D

David A. Black

Hi --

Hi List,

I wrote a simple script that import a file list of hosts and try to
connect.
Before the end of the file the script exits with this error:

/usr/lib/ruby/1.8/net/protocol.rb:133:in `sysread': end of file reached
(EOFError)

I using this code to import list:

file = File.new(list,"r")
begin
while (line = file.gets)
line.chomp!
iplist.push line
end
rescue EOFError
f.close
end

Can you help me please?
Thank you very much

It looks like the error is in the part of the script where you're
connecting to hosts, since it's in the net code.


David
 
A

Alfonso Caponi

David said:
Hi --



It looks like the error is in the part of the script where you're
connecting to hosts, since it's in the net code.


David

This is the complete error:

/usr/lib/ruby/1.8/net/protocol.rb:133:in `sysread': end of file reached
(EOFError)
from /usr/lib/ruby/1.8/net/protocol.rb:133:in `rbuf_fill'
from /usr/lib/ruby/1.8/timeout.rb:56:in `timeout'
from /usr/lib/ruby/1.8/timeout.rb:76:in `timeout'
from /usr/lib/ruby/1.8/net/protocol.rb:132:in `rbuf_fill'
from /usr/lib/ruby/1.8/net/protocol.rb:116:in `readuntil'
from /usr/lib/ruby/1.8/net/protocol.rb:126:in `readline'
from /usr/lib/ruby/1.8/net/http.rb:1988:in `read_status_line'
from /usr/lib/ruby/1.8/net/http.rb:1977:in `read_new'
... 6 levels...
from /usr/lib/ruby/1.8/timeout.rb:56:in `timeout'
 

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,755
Messages
2,569,536
Members
45,009
Latest member
GidgetGamb

Latest Threads

Top