Add guard switch

This commit is contained in:
Zoltán Papp
2025-09-25 20:31:26 +02:00
parent 316fc15701
commit f17ea2aa57
3 changed files with 172 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
package peer
import "context"
type Guard interface {
Start(ctx context.Context, eventCallback func())
SetRelayedConnDisconnected()
SetICEConnDisconnected()
FailedToSendOffer()
}