zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
  }
}