* Protocol(通信协议) Protocol,是asio在网络编程方面最重要的一个concept.在第一章中的levelX类图中可以看到,所有提供网络相关功能的服务和I/O对象都需要Protocol来确定一些细节. Protocol的约束摘要如下: class protocol { public: /// Obtain an identifier for the type of the protocol. int type() const; /// Obtain an identifier…