mirror of
https://github.com/ShadowKatStudios/OC-Minitel.git
synced 2024-11-23 10:38:05 +11:00
replaced a bunch of different configuration options in the minitel daemon with a single command
This commit is contained in:
parent
b212d13010
commit
276c8f125e
@ -121,9 +121,17 @@ function stop()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function set(k,v)
|
function set(k,v)
|
||||||
if cfg[k] then
|
if type(cfg[k]) == "string" then
|
||||||
cfg[k] = v
|
cfg[k] = v
|
||||||
print("cfg."..k.." = "..v)
|
elseif type(cfg[k]) == "number" then
|
||||||
|
cfg[k] = tonumber(v)
|
||||||
|
elseif type(cfg[k]) == "boolean" then
|
||||||
|
if v:lower():sub(1,1) == "t" then
|
||||||
|
cfg[k] = true
|
||||||
|
else
|
||||||
|
cfg[k] = false
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
print("cfg."..k.." = "..tostring(cfg[k]))
|
||||||
writeConfig()
|
writeConfig()
|
||||||
end
|
end
|
||||||
|
@ -241,29 +241,22 @@ function stop()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function debug()
|
function set(k,v)
|
||||||
cfg.debug = not cfg.debug
|
if type(cfg[k]) == "string" then
|
||||||
|
cfg[k] = v
|
||||||
|
elseif type(cfg[k]) == "number" then
|
||||||
|
cfg[k] = tonumber(v)
|
||||||
|
elseif type(cfg[k]) == "boolean" then
|
||||||
|
if v:lower():sub(1,1) == "t" then
|
||||||
|
cfg[k] = true
|
||||||
|
else
|
||||||
|
cfg[k] = false
|
||||||
end
|
end
|
||||||
function set_retry(sn)
|
|
||||||
cfg.retry = tonumber(sn) or 30
|
|
||||||
print("retry = "..tostring(cfg.retry))
|
|
||||||
end
|
end
|
||||||
function set_retrycount(sn)
|
print("cfg."..k.." = "..tostring(cfg[k]))
|
||||||
cfg.retrycount = tonumber(sn) or 64
|
writeConfig()
|
||||||
print("retrycount = "..tostring(cfg.retrycount))
|
|
||||||
end
|
|
||||||
function set_pctime(sn)
|
|
||||||
cfg.pctime = tonumber(sn) or 30
|
|
||||||
print("pctime = "..tostring(cfg.pctime))
|
|
||||||
end
|
|
||||||
function set_rctime(sn)
|
|
||||||
cfg.rctime = tonumber(sn) or 30
|
|
||||||
print("rctime = "..tostring(cfg.rctime))
|
|
||||||
end
|
|
||||||
function set_port(sn)
|
|
||||||
cfg.port = tonumber(sn) or 4096
|
|
||||||
print("port = "..tostring(cfg.port))
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function set_route(to,laddr,raddr)
|
function set_route(to,laddr,raddr)
|
||||||
cfg.sroutes[to] = {laddr,raddr,0}
|
cfg.sroutes[to] = {laddr,raddr,0}
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user