package Netty; //ЭÒé°ü public class MessageProtocol { private int len; //¹Ø¼ü private byte[] content; public int getLen() { return len; } public void setLen(int len) { this.len = len; } public byte[] getContent() { return content; } public void setContent(byte[] content) { this.content = content; } }