diff options
| author | Stefan Boberg <[email protected]> | 2021-09-09 14:03:07 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-09 14:03:07 +0200 |
| commit | bf35035fc235d4a404b0829bd5b3045a0bde450f (patch) | |
| tree | f8c07ce1fd1ed577b3f71f8dcb9ecbaf8090f9db /zencore/include | |
| parent | Made HttpServer an abstract interface, and moved remaining implementation spe... (diff) | |
| download | zen-bf35035fc235d4a404b0829bd5b3045a0bde450f.tar.xz zen-bf35035fc235d4a404b0829bd5b3045a0bde450f.zip | |
HttpServer::AddEndpoint -> HttpServer::RegisterService
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/httpserver.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zencore/include/zencore/httpserver.h b/zencore/include/zencore/httpserver.h index 4a8cef262..593ff7344 100644 --- a/zencore/include/zencore/httpserver.h +++ b/zencore/include/zencore/httpserver.h @@ -303,10 +303,10 @@ private: class HttpServer : public RefCounted { public: - virtual void AddEndpoint(HttpService& Service) = 0; - virtual void Initialize(int BasePort) = 0; - virtual void Run(bool TestMode) = 0; - virtual void RequestExit() = 0; + virtual void RegisterService(HttpService& Service) = 0; + virtual void Initialize(int BasePort) = 0; + virtual void Run(bool TestMode) = 0; + virtual void RequestExit() = 0; }; Ref<HttpServer> CreateHttpServer(); |