Files
netbird/client/internal/peer/proxy.go
2023-04-25 17:10:36 +02:00

13 lines
190 B
Go

package peer
import (
"io"
"net"
)
type proxy interface {
io.Closer
// Start creates a local remoteConn and starts proxying data from/to remoteConn
Start(remoteConn net.Conn) error
}