mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
25 lines
659 B
Lua
25 lines
659 B
Lua
local config = {}
|
|
|
|
-- set to false to run in offline mode (safety regulation only)
|
|
config.NETWORKED = true
|
|
-- unique reactor ID
|
|
config.REACTOR_ID = 1
|
|
|
|
-- port to send packets TO server
|
|
config.SERVER_PORT = 16000
|
|
-- port to listen to incoming packets FROM server
|
|
config.LISTEN_PORT = 14001
|
|
-- max trusted modem message distance (0 to disable check)
|
|
config.TRUSTED_RANGE = 0
|
|
-- time in seconds (>= 2) before assuming a remote device is no longer active
|
|
config.COMMS_TIMEOUT = 5
|
|
|
|
-- log path
|
|
config.LOG_PATH = "/log.txt"
|
|
-- log mode
|
|
-- 0 = APPEND (adds to existing file on start)
|
|
-- 1 = NEW (replaces existing file on start)
|
|
config.LOG_MODE = 0
|
|
|
|
return config
|