Use the SNMP fix from master.
parent
36f6bcca15
commit
136c2c4377
|
@ -63,11 +63,8 @@ class RexUDPTransport
|
||||||
rescue NoMethodError
|
rescue NoMethodError
|
||||||
@socket.send(data, 0, host, port)
|
@socket.send(data, 0, host, port)
|
||||||
rescue ::Errno::EISCONN
|
rescue ::Errno::EISCONN
|
||||||
@socket.close
|
@socket.write(data)
|
||||||
@socket = UDPSocket.open
|
|
||||||
@socket.send(data,0,host,port)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def recv(max_bytes)
|
def recv(max_bytes)
|
||||||
|
@ -719,4 +716,3 @@ class TrapListener
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue