
23 Nov
2006
23 Nov
'06
10:13 p.m.
berserker_r wrote:
void server::accept_handler(const boost::system::error_code &e) {
} void server::accept() { m_acceptor.async_accept(m_connection->getSocket(), boost::bind(&server::accept_handler, this, boost::asio::placeholders::error)); }
I fix the problem changing boost::asio::placeholders::error to _1, but I don't think it's the *proper* way right?
Thanks for reporting that problem, I think I've fixed it in CVS now. Cheers, Chris