diff options
| author | zousar <[email protected]> | 2022-01-27 01:01:05 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-27 09:01:05 +0100 |
| commit | cf38d96543b2086a863ef4823ee769ec45cc45a4 (patch) | |
| tree | 1c5c56053f43271398d9f9a469383f29df76c570 /zenhttp/httpasio.h | |
| parent | Implement SkipData,QueryLocal,StoreLocal for HandleRpcGetCacheRecords (#41) (diff) | |
| download | zen-cf38d96543b2086a863ef4823ee769ec45cc45a4.tar.xz zen-cf38d96543b2086a863ef4823ee769ec45cc45a4.zip | |
Handle HTTP port collisions when initializing server (#40)
Diffstat (limited to 'zenhttp/httpasio.h')
| -rw-r--r-- | zenhttp/httpasio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenhttp/httpasio.h b/zenhttp/httpasio.h index 08834ba21..716145955 100644 --- a/zenhttp/httpasio.h +++ b/zenhttp/httpasio.h @@ -22,7 +22,7 @@ public: ~HttpAsioServer(); virtual void RegisterService(HttpService& Service) override; - virtual void Initialize(int BasePort) override; + virtual int Initialize(int BasePort) override; virtual void Run(bool IsInteractiveSession) override; virtual void RequestExit() override; |