mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-27 20:56:44 +00:00
17 lines
252 B
Go
17 lines
252 B
Go
package lazyconn
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/netbirdio/netbird/client/internal/peer"
|
|
)
|
|
|
|
type PeerConfig struct {
|
|
PublicKey string
|
|
AllowedIPs []netip.Prefix
|
|
PeerConnID peer.ConnID
|
|
Log *log.Entry
|
|
}
|