diff options
Diffstat (limited to '')
-rw-r--r-- | src/OSSupport/TCPLinkImpl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/OSSupport/TCPLinkImpl.h b/src/OSSupport/TCPLinkImpl.h index d582e2f8d..0437353fb 100644 --- a/src/OSSupport/TCPLinkImpl.h +++ b/src/OSSupport/TCPLinkImpl.h @@ -22,9 +22,9 @@ // fwd: class cServerHandleImpl; -typedef SharedPtr<cServerHandleImpl> cServerHandleImplPtr; +typedef std::shared_ptr<cServerHandleImpl> cServerHandleImplPtr; class cTCPLinkImpl; -typedef SharedPtr<cTCPLinkImpl> cTCPLinkImplPtr; +typedef std::shared_ptr<cTCPLinkImpl> cTCPLinkImplPtr; typedef std::vector<cTCPLinkImplPtr> cTCPLinkImplPtrs; @@ -79,8 +79,8 @@ protected: // fwd: class cLinkTlsContext; - typedef SharedPtr<cLinkTlsContext> cLinkTlsContextPtr; - typedef WeakPtr<cLinkTlsContext> cLinkTlsContextWPtr; + typedef std::shared_ptr<cLinkTlsContext> cLinkTlsContextPtr; + typedef std::weak_ptr<cLinkTlsContext> cLinkTlsContextWPtr; /** Wrapper around cSslContext that is used when this link is being encrypted by SSL. */ class cLinkTlsContext : |