This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//通讯协议处理,主要处理封包和解包的过程 | |
package protocol | |
import ( | |
"bytes" | |
"encoding/binary" | |
) | |
const ( | |
ConstHeader = "secret" |