0. 소개

Programming/Boost asio 2015. 2. 2. 00:22

C++ Third-party 라이브러리 (라기엔 너무 메이저한) Boost 의 부분인 

asio 의 tutorial 을 정리할 예정입니다. 


다음 내용에 기반합니다.


http://www.boost.org/doc/libs/1_57_0/doc/html/boost_asio/tutorial.html

Basic Skills

The tutorial programs in this first section introduce the fundamental concepts required to use the asio toolkit. Before plunging into the complex world of network programming, these tutorial programs illustrate the basic skills using simple asynchronous timers.

Introduction to Sockets

The tutorial programs in this section show how to use asio to develop simple client and server programs. These tutorial programs are based around the daytime protocol, which supports both TCP and UDP.

The first three tutorial programs implement the daytime protocol using TCP.

The next three tutorial programs implement the daytime protocol using UDP.

The last tutorial program in this section demonstrates how asio allows the TCP and UDP servers to be easily combined into a single program.