diff options
Diffstat (limited to 'net/server/http_server.h')
-rw-r--r-- | net/server/http_server.h | 1 |
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, |