summaryrefslogtreecommitdiff
path: root/includes/HttpServer.h
diff options
context:
space:
mode:
authorNicolas Noble <nnoble@blizzard.com>2014-08-08 13:34:23 -0700
committerNicolas Noble <nnoble@blizzard.com>2014-08-08 13:34:23 -0700
commitdaf6897fe24e62ae8cf8e42b151ed565563332fe (patch)
treed4f313b369e5b3b873f51c51525ed9816053aaea /includes/HttpServer.h
parentf67877e10216326b2230cd827d15aab0802d826d (diff)
Finalizing cares integration.
Diffstat (limited to 'includes/HttpServer.h')
-rw-r--r--includes/HttpServer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/HttpServer.h b/includes/HttpServer.h
index 683390c..ac219e1 100644
--- a/includes/HttpServer.h
+++ b/includes/HttpServer.h
@@ -79,6 +79,7 @@ class HttpServer {
};
ActionFound findAction(const char * uri, const char * host);
String getServerName() { return "Balau/1.0"; }
+ bool started();
private:
bool m_started;
void * m_listenerPtr;
@@ -87,6 +88,7 @@ class HttpServer {
typedef std::list<Action *> ActionList;
ActionList m_actions;
RWLock m_actionsLock;
+ Events::TaskEvent m_listenerEvent;
friend class HttpWorker;