| 95 | // --- Session / mode introspection (used by transports + UI) --- |
| 96 | |
| 97 | bool ValidateSession(const FString& ClientSessionId) const |
| 98 | { |
| 99 | if (ClientSessionId.IsEmpty()) |
| 100 | return false; |
| 101 | return ClientSessionId.Equals(ActiveSessionId); |
| 102 | } |
| 103 | FString GetActiveSessionId() const { return ActiveSessionId; } |
| 104 | void SetActiveSessionIdForTest(const FString& Id) { ActiveSessionId = Id; } |
| 105 |
no test coverage detected