diff options
| author | Stefan Boberg <[email protected]> | 2021-09-23 12:39:22 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-23 12:39:22 +0200 |
| commit | 6475458866463133aae760e938b27d98b6ead3d3 (patch) | |
| tree | 5b69ca464a18e996b3c060dcaa6e1ae5ac8e2090 /zenserver/cache/structuredcache.h | |
| parent | cidstore: made all updates log using LogMapping() (diff) | |
| parent | Use /check/health instead of /test/hello. (diff) | |
| download | zen-6475458866463133aae760e938b27d98b6ead3d3.tar.xz zen-6475458866463133aae760e938b27d98b6ead3d3.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zenserver/cache/structuredcache.h')
| -rw-r--r-- | zenserver/cache/structuredcache.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zenserver/cache/structuredcache.h b/zenserver/cache/structuredcache.h index edf011ae4..3fdaa1236 100644 --- a/zenserver/cache/structuredcache.h +++ b/zenserver/cache/structuredcache.h @@ -74,7 +74,9 @@ private: void HandleCacheRecordRequest(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); void HandleGetCacheRecord(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); void HandlePutCacheRecord(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); - void HandleCachePayloadRequest(zen::HttpServerRequest& Request, CacheRef& Ref, CachePolicy Policy); + void HandleCachePayloadRequest(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); + void HandleGetCachePayload(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); + void HandlePutCachePayload(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); void HandleCacheBucketRequest(zen::HttpServerRequest& Request, std::string_view Bucket); spdlog::logger& Log() { return m_Log; } |