diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-09-17 14:47:48 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-09-17 14:47:48 -0400 |
| commit | 300588c5e86689b56d66555f8aefa9868d170361 (patch) | |
| tree | 86d02a1a26150980d72bf8b8640423ca81bfd337 /node/NodeConfig.hpp | |
| parent | de5cc82b5b29a47b0cc7de08800fe38860228850 (diff) | |
| download | infinitytier-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.hpp | 3 |
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(); |
