- don't allow game to start and show a message if network player connected and on an unassigned slot

This commit is contained in:
Mark Vejvoda
2011-10-15 01:03:24 +00:00
parent 3ff146e3f3
commit 3b8d07fc8d
4 changed files with 70 additions and 17 deletions

View File

@@ -209,6 +209,10 @@ void FTPServerThread::execute() {
ftpCreateAccount("lister", "", "./", FTP_ACC_LS);
ftpCreateAccount("admin", "xxx", "./", FTP_ACC_RD | FTP_ACC_WR | FTP_ACC_LS | FTP_ACC_DIR);
*/
if(getQuitStatus() == true) {
return;
}
ftpStart(portNumber);
while(this->getQuitStatus() == false) {
ftpExecute();