mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 15:35:46 +00:00
kernel: Fix implementation of ConvertSessionToDomain.
This commit is contained in:
parent
d203083a1c
commit
9d04a45a90
10 changed files with 90 additions and 54 deletions
|
@ -91,14 +91,6 @@ public:
|
|||
/// TODO(Subv): Find a better name for this.
|
||||
SharedPtr<Thread> currently_handling;
|
||||
|
||||
void ConvertToDomain() {
|
||||
is_domain = true;
|
||||
}
|
||||
|
||||
bool IsDomain() const {
|
||||
return is_domain;
|
||||
}
|
||||
|
||||
private:
|
||||
ServerSession();
|
||||
~ServerSession() override;
|
||||
|
@ -110,8 +102,6 @@ private:
|
|||
* @return The created server session
|
||||
*/
|
||||
static ResultVal<SharedPtr<ServerSession>> Create(std::string name = "Unknown");
|
||||
|
||||
bool is_domain{};
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue