Changeset 10472


Ignore:
Timestamp:
04/27/11 10:01:54 (14 years ago)
Author:
tbretz
Message:
Fixed compilation errors.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/dclient5.cc

    r10470 r10472  
    11#include <boost/bind.hpp>
    22#include <boost/thread.hpp>
     3#include <boost/asio/error.hpp>
    34#include <boost/asio/deadline_timer.hpp>
    45
     
    5960
    6061            str << "HandleReadTimeout: " << error.message() << " (" << error << ")";// << endl;
    61             if (error==bs::error::misc_errors::eof)
     62            if (error==ba::error::misc_errors::eof)
    6263                Warn(str); // Connection: EOF (closed by remote host)
    6364            else
     
    8485            // 107: Transport endpoint is not connected
    8586            // 125: Operation canceled
    86             if (error && error!=bs::basic_errors::not_connected)
     87            if (error && error!=ba::error::basic_errors::not_connected)
    8788            {
    8889                stringstream str;
Note: See TracChangeset for help on using the changeset viewer.