link.go 554 B

12345678910111213141516171819202122232425262728293031
  1. package conn
  2. type Secret struct {
  3. Password string
  4. Conn *Conn
  5. }
  6. func NewSecret(p string, conn *Conn) *Secret {
  7. return &Secret{
  8. Password: p,
  9. Conn: conn,
  10. }
  11. }
  12. type Link struct {
  13. ConnType string //连接类型
  14. Host string //目标
  15. Crypt bool //加密
  16. Compress bool
  17. RemoteAddr string
  18. }
  19. func NewLink(connType string, host string, crypt bool, compress bool, remoteAddr string) *Link {
  20. return &Link{
  21. RemoteAddr: remoteAddr,
  22. ConnType: connType,
  23. Host: host,
  24. Crypt: crypt,
  25. Compress: compress,
  26. }
  27. }