diff --git a/include/transport/WebSocketClient.h b/include/transport/WebSocketClient.h index bdfa7dbc8cccd3f9758ab2e81421336538e43806..9a7869a20523e90cd6d2e5f96d59bda9b5b299cf 100644 --- a/include/transport/WebSocketClient.h +++ b/include/transport/WebSocketClient.h @@ -50,7 +50,7 @@ class Component; class WebSocketClient { public: - WebSocketClient(Component *component); + WebSocketClient(Component *component, const std::string &user); virtual ~WebSocketClient(); @@ -82,6 +82,7 @@ class WebSocketClient { std::string m_buffer; bool m_upgraded; Swift::Timer::ref m_reconnectTimer; + std::string m_user; }; }