mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 03:25:46 +00:00
Fixed the codestyle to match our clang-format rules.
This commit is contained in:
parent
ebbb55ec8f
commit
016307ae65
16 changed files with 108 additions and 68 deletions
|
@ -11,16 +11,19 @@ namespace Kernel {
|
|||
|
||||
ClientSession::ClientSession() = default;
|
||||
ClientSession::~ClientSession() {
|
||||
// This destructor will be called automatically when the last ClientSession handle is closed by the emulated application.
|
||||
// This destructor will be called automatically when the last ClientSession handle is closed by
|
||||
// the emulated application.
|
||||
|
||||
if (server_session->hle_handler)
|
||||
server_session->hle_handler->ClientDisconnected(server_session);
|
||||
|
||||
// TODO(Subv): If the session is still open, set the connection status to 2 (Closed by client),
|
||||
// wake up all the ServerSession's waiting threads and set the WaitSynchronization result to 0xC920181A.
|
||||
// wake up all the ServerSession's waiting threads and set the WaitSynchronization result to
|
||||
// 0xC920181A.
|
||||
}
|
||||
|
||||
ResultVal<SharedPtr<ClientSession>> ClientSession::Create(ServerSession* server_session, std::string name) {
|
||||
ResultVal<SharedPtr<ClientSession>> ClientSession::Create(ServerSession* server_session,
|
||||
std::string name) {
|
||||
SharedPtr<ClientSession> client_session(new ClientSession);
|
||||
|
||||
client_session->name = std::move(name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue