diff options
Diffstat (limited to 'Swiften/Server/ServerFromClientSession.h')
-rw-r--r-- | Swiften/Server/ServerFromClientSession.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Swiften/Server/ServerFromClientSession.h b/Swiften/Server/ServerFromClientSession.h index 748f7eb..33826a4 100644 --- a/Swiften/Server/ServerFromClientSession.h +++ b/Swiften/Server/ServerFromClientSession.h @@ -31,14 +31,22 @@ namespace Swift { PayloadSerializerCollection* payloadSerializers, UserRegistry* userRegistry); + boost::signal<void ()> onSessionStarted; + private: void handleElement(boost::shared_ptr<Element>); void handleStreamStart(const ProtocolHeader& header); + void setInitialized(); + bool isInitialized() const { + return initialized; + } + private: String id_; UserRegistry* userRegistry_; bool authenticated_; + bool initialized; String user_; }; } |