Class: SNMP::UDPServerTransport
- Inherits:
-
Object
- Object
- SNMP::UDPServerTransport
- Defined in:
- lib/snmp/manager.rb
Instance Method Summary collapse
- #close ⇒ Object
-
#initialize(host, port, address_family) ⇒ UDPServerTransport
constructor
A new instance of UDPServerTransport.
- #recvfrom(max_bytes) ⇒ Object
- #send(data, host, port) ⇒ Object
Constructor Details
#initialize(host, port, address_family) ⇒ UDPServerTransport
Returns a new instance of UDPServerTransport.
543 544 545 546 |
# File 'lib/snmp/manager.rb', line 543 def initialize(host, port, address_family) @socket = UDPSocket.open(address_family) @socket.bind(host, port) end |
Instance Method Details
#close ⇒ Object
548 549 550 |
# File 'lib/snmp/manager.rb', line 548 def close @socket.close end |
#recvfrom(max_bytes) ⇒ Object
556 557 558 559 560 |
# File 'lib/snmp/manager.rb', line 556 def recvfrom(max_bytes) data, host_info = @socket.recvfrom(max_bytes) _, host_port, _, host_ip = host_info return data, host_ip, host_port end |
#send(data, host, port) ⇒ Object
552 553 554 |
# File 'lib/snmp/manager.rb', line 552 def send(data, host, port) @socket.send(data, 0, host, port) end |