From bf35035fc235d4a404b0829bd5b3045a0bde450f Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Thu, 9 Sep 2021 14:03:07 +0200 Subject: HttpServer::AddEndpoint -> HttpServer::RegisterService --- zencore/httpsys.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zencore/httpsys.cpp') diff --git a/zencore/httpsys.cpp b/zencore/httpsys.cpp index 0fc0c0ef6..da07a13dd 100644 --- a/zencore/httpsys.cpp +++ b/zencore/httpsys.cpp @@ -784,7 +784,7 @@ HttpSysServer::IssueNewRequestMaybe() } void -HttpSysServer::AddEndpoint(const char* UrlPath, HttpService& Service) +HttpSysServer::RegisterService(const char* UrlPath, HttpService& Service) { if (UrlPath[0] == '/') { @@ -1240,9 +1240,9 @@ HttpSysServer::RequestExit() m_ShutdownEvent.Set(); } void -HttpSysServer::AddEndpoint(HttpService& Service) +HttpSysServer::RegisterService(HttpService& Service) { - AddEndpoint(Service.BaseUri(), Service); + RegisterService(Service.BaseUri(), Service); } #endif // ZEN_PLATFORM_WINDOWS -- cgit v1.2.3