非ブースト asio を使用して単純な非同期サーバーを作成しています。私は巨大なテンプレート エラーに遭遇しました。率直に言って、それが何を意味するのか想像することさえできません。
参考までに、私のコードはhttp://think-async.com/Asio/asio-1.5.3/src/examples/http/server3/connection.cppによく似ています。
これが私のコードです:
void client_connection::serve()
{
// std::cout << "Began serving connection" << std::endl;
// refer to http server 3 connection.cpp
this->socket_.async_read_some(asio::buffer(&protocol_version_, 1), this->strand_.wrap(std::bind(&client_connection::handle_read, this->shared_from_this(), asio::placeholders::error, asio::placeholders::bytes_transferred)));
// 65535 max tcp size
}
void client_connection::handle_read(const asio::error_code& error_, std::size_t bytes_)
{
if (error_) return;
// for debug: print out all the recieved bytes
std::cout << std::hex << protocol_version_ << " " << std::endl;
this->serve();
}
エラーは次のとおりです。
1>C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\functional(1152): error : no instance of overloaded function "std::_Pmf_wrap<_Pmf_t, _Rx, _Farg0, _V0_t, _V1_t, std::_Nil, std::_Nil, std::_Nil, std::_Nil, std::_Nil>::operator() [with _Pmf_t=void (client_connection::*)(const asio::error_code &, size_t={unsigned int}), _Rx=void, _Farg0=client_connection, _V0_t=const asio::error_code &, _V1_t=size_t={unsigned int}]" matches the argument list
1> argument types are: (client_connection *, boost::arg<1>, boost::arg<2>)
1> object type is: std::_Pmf_wrap<void (client_connection::*)(const asio::error_code &, size_t), void, client_connection, const asio::error_code &, size_t, std::_Nil, std::_Nil, std::_Nil, std::_Nil, std::_Nil>
1> _VARIADIC_EXPAND_0X(_CLASS_BIND, , , , )
1> ^
(+~20 not very relevant lines)
shared_from_this に関連する予感がしましたが、shared_from_this の動作を削除してもしなくてもエラーが発生します。
どんな形式の助けも大歓迎です。