测试用Write发布博客

1.测试标题

测试标题效果

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;
}
posted @ 2014-11-09 11:58  IT人Key  阅读(153)  评论(0编辑  收藏  举报