summaryrefslogtreecommitdiffstats
path: root/net/server/http_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/server/http_server.h')
-rw-r--r--net/server/http_server.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/server/http_server.h b/net/server/http_server.h
index 2ae698b..47214ab 100644
--- a/net/server/http_server.h
+++ b/net/server/http_server.h
@@ -30,6 +30,7 @@ class HttpServer {
// destroy the HttpServer in any of these callbacks.
class Delegate {
public:
+ virtual void OnConnect(int connection_id) = 0;
virtual void OnHttpRequest(int connection_id,
const HttpServerRequestInfo& info) = 0;
virtual void OnWebSocketRequest(int connection_id,