summaryrefslogtreecommitdiff
path: root/node/NodeConfig.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-17 14:47:48 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-17 14:47:48 -0400
commit300588c5e86689b56d66555f8aefa9868d170361 (patch)
tree86d02a1a26150980d72bf8b8640423ca81bfd337 /node/NodeConfig.hpp
parentde5cc82b5b29a47b0cc7de08800fe38860228850 (diff)
downloadinfinitytier-300588c5e86689b56d66555f8aefa9868d170361.tar.gz
infinitytier-300588c5e86689b56d66555f8aefa9868d170361.zip
Add port and control port command line options to daemon and command line client, add new supernode keys to Defaults.
Diffstat (limited to 'node/NodeConfig.hpp')
-rw-r--r--node/NodeConfig.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/node/NodeConfig.hpp b/node/NodeConfig.hpp
index b9858e4f..a2da444f 100644
--- a/node/NodeConfig.hpp
+++ b/node/NodeConfig.hpp
@@ -59,9 +59,10 @@ public:
/**
* @param renv Runtime environment
* @param authToken Configuration authentication token
+ * @param controlPort Control port for local control packet I/O
* @throws std::runtime_error Unable to bind to local control port
*/
- NodeConfig(const RuntimeEnvironment *renv,const char *authToken)
+ NodeConfig(const RuntimeEnvironment *renv,const char *authToken,unsigned int controlPort)
throw(std::runtime_error);
~NodeConfig();