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