mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-21 17:56:39 +00:00
11 lines
184 B
Go
11 lines
184 B
Go
package peer
|
|
|
|
import "context"
|
|
|
|
type Guard interface {
|
|
Start(ctx context.Context, eventCallback func())
|
|
SetRelayedConnDisconnected()
|
|
SetICEConnDisconnected()
|
|
FailedToSendOffer()
|
|
}
|