Changeset 10472
- Timestamp:
- 04/27/11 10:01:54 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/dclient5.cc
r10470 r10472 1 1 #include <boost/bind.hpp> 2 2 #include <boost/thread.hpp> 3 #include <boost/asio/error.hpp> 3 4 #include <boost/asio/deadline_timer.hpp> 4 5 … … 59 60 60 61 str << "HandleReadTimeout: " << error.message() << " (" << error << ")";// << endl; 61 if (error==b s::error::misc_errors::eof)62 if (error==ba::error::misc_errors::eof) 62 63 Warn(str); // Connection: EOF (closed by remote host) 63 64 else … … 84 85 // 107: Transport endpoint is not connected 85 86 // 125: Operation canceled 86 if (error && error!=b s::basic_errors::not_connected)87 if (error && error!=ba::error::basic_errors::not_connected) 87 88 { 88 89 stringstream str;
Note:
See TracChangeset
for help on using the changeset viewer.