Added config options for RestApi

-IP now changes RestApi listening ip.
This commit is contained in:
high 2011-09-05 14:33:37 -04:00
parent 4b694c0c31
commit f949738db9
3 changed files with 14 additions and 3 deletions

View file

@ -179,6 +179,7 @@ namespace TShockAPI
RememberedPos = new RemeberedPosManager(DB);
RestApi = new SecureRest(IPAddress.Any, 8080);
RestApi.Verify += RestApi_Verify;
RestApi.Port = Config.RestApiPort;
RestManager = new RestManager(RestApi);
RestManager.RegisterRestfulCommands();
if (Config.EnableGeoIP)
@ -307,6 +308,7 @@ namespace TShockAPI
if (IPAddress.TryParse(parms[++i], out ip))
{
Netplay.serverListenIP = ip;
RestApi.Ip = ip;
Console.Write("Using IP: {0}", ip);
}
else
@ -384,7 +386,8 @@ namespace TShockAPI
AuthToken = 0;
}
Regions.ReloadAllRegions();
RestApi.Start();
if (Config.RestApiEnabled)
RestApi.Start();
}