|
|
@@ -36,14 +36,15 @@ public:
|
|
|
|
|
|
ResultCode SendSyncRequest(SharedPtr<Thread> thread);
|
|
|
|
|
|
- std::string name; ///< Name of client port (optional)
|
|
|
+private:
|
|
|
+ explicit ClientSession(KernelCore& kernel);
|
|
|
+ ~ClientSession() override;
|
|
|
|
|
|
/// The parent session, which links to the server endpoint.
|
|
|
std::shared_ptr<Session> parent;
|
|
|
|
|
|
-private:
|
|
|
- explicit ClientSession(KernelCore& kernel);
|
|
|
- ~ClientSession() override;
|
|
|
+ /// Name of the client session (optional)
|
|
|
+ std::string name;
|
|
|
};
|
|
|
|
|
|
} // namespace Kernel
|