aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/protocolwebsocket.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/unstable/protocolwebsocket.h')
-rw-r--r--src/unstable/protocolwebsocket.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unstable/protocolwebsocket.h b/src/unstable/protocolwebsocket.h
index cf00d34..4a3d0a1 100644
--- a/src/unstable/protocolwebsocket.h
+++ b/src/unstable/protocolwebsocket.h
@@ -11,6 +11,8 @@
11#include "bu/protocol.h" 11#include "bu/protocol.h"
12#include "bu/hash.h" 12#include "bu/hash.h"
13 13
14#include "bu/mutex.h"
15
14namespace Bu 16namespace Bu
15{ 17{
16 class ProtocolWebSocket : public Bu::Protocol 18 class ProtocolWebSocket : public Bu::Protocol
@@ -58,6 +60,7 @@ namespace Bu
58 Status eStatus; 60 Status eStatus;
59 Bu::String sPath; 61 Bu::String sPath;
60 Bu::Hash<Bu::String, Bu::StringList> hHeader; 62 Bu::Hash<Bu::String, Bu::StringList> hHeader;
63 Bu::Mutex mClient;
61 }; 64 };
62} 65}
63 66