Refactor SocketWrapper

This commit is contained in:
Vinnie Falco
2013-08-15 12:36:02 -07:00
parent 69f0eb109f
commit cc133ccc4c
6 changed files with 509 additions and 501 deletions

View File

@@ -101,8 +101,8 @@ protected:
protocol_type m_protocol;
socket_type m_socket;
acceptor_type m_acceptor;
SocketWrapper <socket_type> m_socket_wrapper;
SocketWrapper <acceptor_type> m_acceptor_wrapper;
SocketWrapper <socket_type&> m_socket_wrapper;
SocketWrapper <acceptor_type&> m_acceptor_wrapper;
};
#endif