ForwardInfo.go 183 B

123456789101112131415
  1. package Models
  2. type ForwardInfo struct {
  3. Name string
  4. Status byte
  5. SrcAddr string
  6. SrcPort int
  7. Protocol string
  8. DestAddr string
  9. DestPort int
  10. OnlineCount int
  11. Clients []string
  12. }
粤ICP备19079148号