mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 00:06:38 +00:00
add comment
This commit is contained in:
@@ -210,10 +210,11 @@ func (conn *Conn) Open(engineCtx context.Context) error {
|
||||
// both peer send offer
|
||||
if err := conn.handshaker.SendOffer(); err != nil {
|
||||
conn.Log.Errorf("failed to send offer: %v", err)
|
||||
// if remote peer is offline, no need to try to reconnect.
|
||||
// The remote peer when online will send an offer to us
|
||||
if !errors.Is(err, ErrPeerNotAvailable) {
|
||||
switch err {
|
||||
case ErrPeerNotAvailable:
|
||||
conn.guard.FailedToSendOffer()
|
||||
case ErrSignalNotSupportDeliveryCheck:
|
||||
// todo replace guard with the original connection logic
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user