代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
boost中asio的客户端代码示例
作者:
谢中辉
/ 发布于
2011/9/18
/
924
#include
#include
#include
#include
#include
g++ -o client asio_client.cpp -lboost_system -lboost_date_time -lboost_thread
#include <iostream> #include <boost/ref.hpp> #include <boost/asio.hpp> #include <boost/bind.hpp> #include <boost/function.hpp></div> <div>using namespace boost::asio;</div> <div>void client(io_service &ios) try { std::cout << "client starting." << std::endl;</div> <div> ip::tcp::socket sock(ios); ip::tcp::endpoint ep(ip::address::from_string("127.0.0.1"), 6688); sock.connect(ep);</div> <div> std::vector<char> str(100, 0); sock.read_some(buffer(str)); std::cout << "receive from: " << sock.remote_endpoint().address() << std::endl; std::cout << &str[0] << std::endl; } catch (std::exception &e) { std::cout << e.what() << std::endl; } <div>class a_timer { private: int count, count_max; boost::function<void()> f; boost::asio::deadline_timer t;</div> <div> public: template<typename F> a_timer(io_service &ios, int x, F func): f(func), count_max(x), count(0), t(ios, boost::posix_time::millisec(500)) { t.async_wait(boost::bind(&a_timer::call_func, this, boost::asio::placeholders::error)); } <div> void call_func(const boost::system::error_code&) { if (count >= count_max) { return; } <div> ++count; f(); t.expires_at(t.expires_at() + boost::posix_time::millisec(500)); t.async_wait(boost::bind(&a_timer::call_func, this, boost::asio::placeholders::error)); } <div>};</div> <div>int main() { io_service ios; a_timer at(ios, 5, boost::bind(client, boost::ref(ios)));</div> <div> ios.run(); }
试试其它关键字
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
谢中辉
贡献的其它代码
(
2
)
.
boost中asio的客户端代码示例
.
boost中asio服务端代码示例
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3