mirror of
https://github.com/tavenli/port-forward.git
synced 2024-04-21 12:42:13 +00:00
12 lines
133 B
Go
12 lines
133 B
Go
package main
|
|
|
|
import "net"
|
|
|
|
type AgentClient struct {
|
|
|
|
cid string
|
|
encode, decode func([]byte) []byte
|
|
authed bool
|
|
conn net.Conn
|
|
|
|
} |