首页 > 代码库 > 测试2
测试2
测试一下
上次的测试很不爽
测试两下
再试一下
这个短路
void client(io_service &ios, deadline_timer &timer, const system::error_code &ec){ try{ cout << "client start." << endl; ip::tcp::socket _sock(ios); ip::tcp::endpoint ep(ip::address::from_string("127.0.0.1"), 6688); _sock.connect(ep); vector<char> str(100, 0); _sock.read_some(buffer(str)); cout << "recive from " << _sock.remote_endpoint().address(); cout << &str[0] << endl; timer.async_wait(bind(client, ref(ios), ref(timer), placeholders::error)); } catch(std::exception &e) { cout << e.what() << endl; }}int main(int argc, _TCHAR* argv[]){ io_service ios; deadline_timer timer(ios, posix_time::seconds(2)); timer.async_wait(bind(client, ref(ios), ref(timer), placeholders::error)); ios.run(); getchar(); return 0;}
测试2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。