(svn r22934) -Fix [FS#4771]: prevent authentication bypass for the admin port when a new game is started

This commit is contained in:
rubidium
2011-09-15 18:28:39 +00:00
parent fd79d18c3f
commit 998bbde49e
4 changed files with 33 additions and 16 deletions

View File

@@ -449,6 +449,15 @@ public:
~NetworkAdminSocketHandler();
NetworkRecvStatus ReceivePackets();
/**
* Get the status of the admin.
* @return The status of the admin.
*/
AdminStatus GetAdminStatus() const
{
return this->status;
}
};
#endif /* ENABLE_NETWORK */