Skip to Content Skip to Search

UDP/IP address information used by Socket.udp_server_loop.

Methods
N
R

Attributes

[R] local_address

Local address

[R] remote_address

Address of the source

Class Public methods

new(remote_address, local_address, &reply_proc)

remote_address is an Addrinfo object.

local_address is an Addrinfo object.

reply_proc is a Proc used to send reply back to the source.

# File ruby/ext/socket/lib/socket.rb, line 1044
def initialize(remote_address, local_address, &reply_proc)
  @remote_address = remote_address
  @local_address = local_address
  @reply_proc = reply_proc
end

Instance Public methods

reply(msg)

Sends the String msg to the source

# File ruby/ext/socket/lib/socket.rb, line 1061
def reply(msg)
  @reply_proc.call msg
end