mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 08:25:07 +01:00
Kernel/Sessions: Remove the ClientSession::Create function.
It is not meant to be used by anything other than CreateSessionPair.
This commit is contained in:
parent
ce5bc477ca
commit
37347bfa38
@ -25,14 +25,6 @@ ClientSession::~ClientSession() {
|
|||||||
parent->client = nullptr;
|
parent->client = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultVal<SharedPtr<ClientSession>> ClientSession::Create(std::string name) {
|
|
||||||
SharedPtr<ClientSession> client_session(new ClientSession);
|
|
||||||
|
|
||||||
client_session->name = std::move(name);
|
|
||||||
client_session->parent = nullptr;
|
|
||||||
return MakeResult<SharedPtr<ClientSession>>(std::move(client_session));
|
|
||||||
}
|
|
||||||
|
|
||||||
ResultCode ClientSession::SendSyncRequest() {
|
ResultCode ClientSession::SendSyncRequest() {
|
||||||
// Signal the server session that new data is available
|
// Signal the server session that new data is available
|
||||||
if (parent->server)
|
if (parent->server)
|
||||||
|
@ -47,13 +47,6 @@ public:
|
|||||||
private:
|
private:
|
||||||
ClientSession();
|
ClientSession();
|
||||||
~ClientSession() override;
|
~ClientSession() override;
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a client session.
|
|
||||||
* @param name Optional name of client session
|
|
||||||
* @return The created client session
|
|
||||||
*/
|
|
||||||
static ResultVal<SharedPtr<ClientSession>> Create(std::string name = "Unknown");
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -74,7 +74,9 @@ ServerSession::SessionPair ServerSession::CreateSessionPair(
|
|||||||
|
|
||||||
auto server_session =
|
auto server_session =
|
||||||
ServerSession::Create(name + "_Server", std::move(hle_handler)).MoveFrom();
|
ServerSession::Create(name + "_Server", std::move(hle_handler)).MoveFrom();
|
||||||
auto client_session = ClientSession::Create(name + "_Client").MoveFrom();
|
|
||||||
|
SharedPtr<ClientSession> client_session(new ClientSession);
|
||||||
|
client_session->name = name + "_Client";
|
||||||
|
|
||||||
std::shared_ptr<Session> parent(new Session);
|
std::shared_ptr<Session> parent(new Session);
|
||||||
parent->client = client_session.get();
|
parent->client = client_session.get();
|
||||||
|
Loading…
Reference in New Issue
Block a user