-
Notifications
You must be signed in to change notification settings - Fork 15
Remod server control daemon draft
Iceflower edited this page May 17, 2017
·
2 revisions
Independent daemon provides API for control Remod server. A daemon connect to a Remod server via server's rcon connection. Probably data-flow will be one way from the external application to a remod server via API.
- Daemon listen for incoming commands
- Daemon execute commands on a Remod server
- Daemon can provide rcon console output
- Daemon can show information about a remod server gathered with extinfo
A daemon store configuration in json formatted config file.
{
"addr": "",
"port": 27080,
"remote_addr": "192.168.0.1",
"rcon_port": 27070,
"rcon_pass": "atata",
"info_port": 27868
}
-
addr
- local interface if empty listen all -
port
- service port for incomming commands -
remote_addr
- Remod server addres -
rcon_port
- Remod server rcon port -
rcon_pass
- Remod server rcon password -
info_port
- Remod server info and extinfo port