Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions proxy/http/HttpSessionManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include "I_EventSystem.h"
#include "PoolableSession.h"
#include "tscore/IntrusiveHashMap.h"
#include "swoc/IntrusiveHashMap.h"

class ProxyTransaction;
class HttpSM;
Expand Down Expand Up @@ -76,8 +76,8 @@ class ServerSessionPool : public Continuation
}

private:
using IPTable = IntrusiveHashMap<PoolableSession::IPLinkage>;
using FQDNTable = IntrusiveHashMap<PoolableSession::FQDNLinkage>;
using IPTable = swoc::IntrusiveHashMap<PoolableSession::IPLinkage>;
using FQDNTable = swoc::IntrusiveHashMap<PoolableSession::FQDNLinkage>;

public:
/** Check if a session matches address and host name.
Expand Down