Changeset 2945
- Timestamp:
- 04/27/06 06:33:51 (3 years ago)
- Files:
-
- hydranode/hncore/cgcomm/client.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
hydranode/hncore/cgcomm/client.cpp
r2862 r2945 91 91 92 92 std::istringstream packet(m_inBuf.substr(5, size)); 93 (*it).second->handle(packet); 93 try { 94 (*it).second->handle(packet); 95 } catch (std::runtime_error &e) { 96 logError( 97 boost::format("CGComm:%s: %s") 98 % (*it).first % e.what() 99 ); 100 } 94 101 m_inBuf.erase(0, size + 5); 95 102 }
