1. 程式人生 > >boost socket程式設計 例子

boost socket程式設計 例子

//
 3 
 4 #include "stdafx.h"
 5 #include <iostream> 
 6 #include <boost/asio.hpp> 
 7 
 8 using namespace boost::asio; 
 9 
10 #define BLOCK_SIZE 64*1024
11 
12 void fill_buffer(char* s)
13 {
14     for (int i=0; i<BLOCK_SIZE; i++)
15     {
16         s[i] = 'a';
17     }
18 }
19 
20 int main(int argc, char* argv[])
21
 {
22     // 所有asio類都需要io_service物件