19 lines
243 B
Ruby
19 lines
243 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NetAddr
|
|
attr_accessor :ip, :port
|
|
|
|
def initialize(ip, port)
|
|
@ip = ip
|
|
@port = port
|
|
end
|
|
|
|
def to_s
|
|
"#{@ip}:#{@port}"
|
|
end
|
|
|
|
def eq(addr)
|
|
@ip == addr.ip && @port == addr.port
|
|
end
|
|
end
|