Remote server class that represents NSCA Host.

This commit is contained in:
Felipe Oliveira 2012-12-07 16:36:46 -02:00
parent 260e47dc36
commit 6c7814d754
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,12 @@
module NSCA
module Client
class RemoteServer
attr_reader :host, :port
def initialize(options)
@host = options[:host]
@port = options[:port] || 5667
end
end
end
end