
3 Oct
2005
3 Oct
'05
10:12 p.m.
My bad for not checking it with 0.3.3 first, as this version will only compile with what's in CVS...
asio::ipv4::tcp::endpoint endpoint(port); acceptor_.open(endpoint.protocol());
This line:
acceptor_.set_option(asio::socket_acceptor::reuse_address(true));
for 0.3.3 needs to be: acceptor_.set_option(asio::socket_base::reuse_address(true)); Cheers, Chris