diff options
Diffstat (limited to 'zencore/httpsys.cpp')
| -rw-r--r-- | zencore/httpsys.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 |