aboutsummaryrefslogtreecommitdiff
path: root/zenhttp/httpsys.h
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2022-01-28 13:30:07 +0100
committerStefan Boberg <[email protected]>2022-01-28 13:30:07 +0100
commit31a2c8a818a904969f17d24dbec7c50dcd688638 (patch)
tree3c1e58e1cc24c86134acfd40c8bf12f22b4f16d6 /zenhttp/httpsys.h
parentStructured cache PUTs now preserve content type for binary and compressed binary (diff)
parentCompile fix (diff)
downloadzen-31a2c8a818a904969f17d24dbec7c50dcd688638.tar.xz
zen-31a2c8a818a904969f17d24dbec7c50dcd688638.zip
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zenhttp/httpsys.h')
-rw-r--r--zenhttp/httpsys.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenhttp/httpsys.h b/zenhttp/httpsys.h
index 06bad99c3..0453b8740 100644
--- a/zenhttp/httpsys.h
+++ b/zenhttp/httpsys.h
@@ -41,7 +41,7 @@ public:
// HttpServer interface implementation
- virtual void Initialize(int BasePort) override;
+ virtual int Initialize(int BasePort) override;
virtual void Run(bool TestMode) override;
virtual void RequestExit() override;
virtual void RegisterService(HttpService& Service) override;
@@ -52,7 +52,7 @@ public:
inline bool IsAsyncResponseEnabled() const { return m_IsAsyncResponseEnabled; }
private:
- void InitializeServer(int BasePort);
+ int InitializeServer(int BasePort);
void Cleanup();
void StartServer();