Skip to content

Instantly share code, notes, and snippets.

View owent's full-sized avatar

WenTao Ou owent

View GitHub Profile
@owent
owent / boost.asio.clienttest.cpp
Last active December 17, 2015 19:29
Boost.Asio 性能测试代码 GCC版本: 4.8.0 编译命令: gcc *.cpp -o test.exe -I/home/owent/Libs/boost/x86_all/include -L/home/owent/Libs/boost/x86_all/lib -lboost_random -lboost_thread -lboost_system -lstdc++ -lrt -pthread -D_POSIX_MT_ -std=c++11 -O2 -g -ggdb
#include <cstdio>
#include <iostream>
#include <cstdlib>
#include <stdint.h>
#include <cstring>
#include <string>
#include <sstream>
#include <map>
#include <vector>
#include <assert.h>