Method: OpenC3::UdpReadWriteSocket#method_missing

Defined in:
lib/openc3/io/udp_sockets.rb

#method_missing(method, *args, &block) ⇒ Object

Defer all methods to the UDPSocket



130
131
132
# File 'lib/openc3/io/udp_sockets.rb', line 130

def method_missing(method, *args, &block)
  @socket.__send__(method, *args, &block)
end