commit | 8ad71bac3e9bc967a49e0f2bae64732b2c546e8d | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Mon Jan 27 00:07:14 2014 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Tue Jan 28 22:49:42 2014 -0800 |
tree | 0c82ddd38a576c1e9bbbc1b8ad1cef172822aa92 | |
parent | a9034b0e0f54d58773307d716c9d86376ccd09d3 [diff] [blame] |
face/tcp: Implementing accepting and establishing connections with TCP Channel refs: #1132, #1133, #1134, #1135 Change-Id: I8878784059fd962187bfcdd23b5adcaf9135cf4e
diff --git a/daemon/face/channel-factory.hpp b/daemon/face/channel-factory.hpp index 7f4a5d4..a2d7ff9 100644 --- a/daemon/face/channel-factory.hpp +++ b/daemon/face/channel-factory.hpp
@@ -30,7 +30,7 @@ }; protected: - typedef std::map<Endpoint, Channel> ChannelMap; + typedef std::map< Endpoint, shared_ptr<Channel> > ChannelMap; ChannelMap m_channels; };