xtcp 具有正常关闭,自定义协议的TCP Server框架。 用法 定义协议格式: 在创建服务器和客户端之前,您需要首先定义协议格式。 // Packet is the unit of data. type Packet interface { fmt. Stringer } // Protocol use to pack/unpack Packet. type Protocol interface { // return the size need for pack the Packet. PackSize ( p Packet ) int // PackTo pack th