lumi-max
lumi-max
请教下。Decode 返回的 []byte 有没有可能 被串改掉? // Decode ... func (cc *BuiltInFrameCodec) Decode(c Conn) ([]byte, error) { ....buf := c.Read() ....if len(buf) == 0 { ........return nil, nil ....} ....c.ResetBuffer() //2.如果这里释放了(bytebuffer.Put(c.byteBuffer)...
交叉编译器无法编译程序。 能给个mipsel go的 交叉编译器的下载地址么。
/** \* characters used for Base64 encoding */ static const char *BASE64_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; ``` /** * encode three bytes using base64 (RFC 3548) * * @param triple three bytes...