From 4420b4601c50529fbdc6b80901945570452de13d Mon Sep 17 00:00:00 2001 From: "Alan M. Carroll" Date: Sat, 17 Jun 2023 08:57:37 -0500 Subject: [PATCH] libswoc: Update IntrusiveHashMap in HTTP session manager. --- proxy/http/HttpSessionManager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proxy/http/HttpSessionManager.h b/proxy/http/HttpSessionManager.h index 9d7266e191f..af5ee997076 100644 --- a/proxy/http/HttpSessionManager.h +++ b/proxy/http/HttpSessionManager.h @@ -34,7 +34,7 @@ #include "I_EventSystem.h" #include "PoolableSession.h" -#include "tscore/IntrusiveHashMap.h" +#include "swoc/IntrusiveHashMap.h" class ProxyTransaction; class HttpSM; @@ -76,8 +76,8 @@ class ServerSessionPool : public Continuation } private: - using IPTable = IntrusiveHashMap; - using FQDNTable = IntrusiveHashMap; + using IPTable = swoc::IntrusiveHashMap; + using FQDNTable = swoc::IntrusiveHashMap; public: /** Check if a session matches address and host name.