class Xplane::Configuration

Attributes

listen_address[RW]
listen_port[RW]
xplane_host[RW]
xplane_port[RW]

Public Class Methods

new() click to toggle source
# File lib/xplane/configuration.rb, line 4
def initialize
  xplane_host = "127.0.0.1"
  xplane_port = 49000
  listen_port = 49001
  listen_address = "127.0.0.1"
end