Refactoring - typo fix (#689)

* make proto and json server permanent. An unconfigured p/j server means server with default values

* fix typo


Former-commit-id: 81ee35ccf348f1fe4dc554f2df03878d9c870f6f
This commit is contained in:
redPanther 2016-06-10 09:00:53 +02:00 committed by brindosch
parent 986409fbda
commit 5b47855bc3
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ void startNetworkServices(const Json::Value &config, Hyperion &hyperion, JsonSer
{
const Json::Value & protoServerConfig = config["protoServer"];
//protoEnable = protoServerConfig.get("enable", true).asBool();
protonPort = protoServerConfig.get("port", 19445).asUInt();
protoPort = protoServerConfig.get("port", 19445).asUInt();
}
protoServer = new ProtoServer(&hyperion, protoPort );