Skip to content
This repository was archived by the owner on Oct 30, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ void ConsoleLoop(){
std::stringstream str;
str << "Available commands:" << std::endl <<
"quit = Quit the Server" << std::endl <<
"envcheck = Check the environment" << std::endl << // I think that will do it. Please correct for incorrect thinks.
"register = Register New User" << std::endl <<
"sessions = Show Number of sessions" << std::endl;
std::cout << str.str();
Expand Down Expand Up @@ -244,4 +245,4 @@ int main(int argc, char* argv[]) {
if (Role == ROLE_CONSOLE) ConsoleLoop();

exit(0);
}
}