AgentClient.go 133 B

123456789101112
  1. package main
  2. import "net"
  3. type AgentClient struct {
  4. cid string
  5. encode, decode func([]byte) []byte
  6. authed bool
  7. conn net.Conn
  8. }
粤ICP备19079148号