mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-11 13:11:03 +00:00
9 lines
150 B
Go
9 lines
150 B
Go
package client
|
|
|
|
import "net"
|
|
|
|
type Transport interface {
|
|
Handshake(rawConn net.Conn, authInfo authInfo) (sessionKey [32]byte, err error)
|
|
net.Conn
|
|
}
|