mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 10:03:47 +01:00
13 lines
219 B
Go
13 lines
219 B
Go
package wgproxy
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
// Proxy is a transfer layer between the Turn connection and the WireGuard
|
|
type Proxy interface {
|
|
AddTurnConn(turnConn net.Conn) (net.Addr, error)
|
|
CloseConn() error
|
|
Free() error
|
|
}
|