mirror of
https://github.com/hbahadorzadeh/stunning.git
synced 2025-12-24 13:38:08 +08:00
13 lines
179 B
Go
13 lines
179 B
Go
package common
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type TunnelInterfaceClient interface {
|
|
HandleConnection(conn net.Conn, tconn net.Conn) error
|
|
WaitingForConnection()
|
|
Close()
|
|
Closed() bool
|
|
}
|