removed stop command, initialize thread

This commit is contained in:
john30
2016-10-16 12:21:31 +02:00
parent 72c4d5a3a0
commit 3683ef6a51
5 changed files with 10 additions and 32 deletions
+1 -10
View File
@@ -96,11 +96,10 @@ private:
* @param connected set to false when the client connection shall be closed.
* @param isHttp true for HTTP message.
* @param listening set to true when the client is in listening mode.
* @param running set to false when the server shall be stopped.
* @param reload set to true when the configuration files were reloaded.
* @return result string to send back to the client.
*/
string decodeMessage(const string& data, const bool isHttp, bool& connected, bool& listening, bool& running, bool& reload);
string decodeMessage(const string& data, const bool isHttp, bool& connected, bool& listening, bool& reload);
/**
* Parse the hex master message from the remaining arguments.
@@ -205,14 +204,6 @@ private:
*/
string executeReload(vector<string> &args);
/**
* Execute the stop command.
* @param args the arguments passed to the command (starting with the command itself), or empty for help.
* @param running set to false when the server shall be stopped.
* @return the result string.
*/
string executeStop(vector<string> &args, bool& running);
/**
* Execute the info command.
* @param args the arguments passed to the command (starting with the command itself), or empty for help.