Class: SNMP::UDPTransport

Inherits:
Object
  • Object
show all
Defined in:
lib/snmp/manager.rb

Overview

Wrap socket so that it can be easily substituted for testing or for using other transport types (e.g. TCP)

Instance Method Summary collapse

Constructor Details

#initialize(host, port) ⇒ UDPTransport

Returns a new instance of UDPTransport.



25
26
27
28
29
# File 'lib/snmp/manager.rb', line 25

def initialize(host, port)
    @socket = UDPSocket.open
    @host = host
    @port = port
end

Instance Method Details

#closeObject



31
32
33
# File 'lib/snmp/manager.rb', line 31

def close
    @socket.close
end

#recv(max_bytes) ⇒ Object



39
40
41
# File 'lib/snmp/manager.rb', line 39

def recv(max_bytes)
    @socket.recv(max_bytes)
end

#send(data) ⇒ Object



35
36
37
# File 'lib/snmp/manager.rb', line 35

def send(data)
    @socket.send(data, 0, @host, @port)
end