mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 10:03:47 +01:00
fd67892cb4
Refactor the flat code structure
39 lines
949 B
Go
39 lines
949 B
Go
package systemops
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
"sync"
|
|
|
|
"github.com/netbirdio/netbird/client/iface"
|
|
"github.com/netbirdio/netbird/client/internal/routemanager/notifier"
|
|
"github.com/netbirdio/netbird/client/internal/routemanager/refcounter"
|
|
)
|
|
|
|
type Nexthop struct {
|
|
IP netip.Addr
|
|
Intf *net.Interface
|
|
}
|
|
|
|
type ExclusionCounter = refcounter.Counter[netip.Prefix, struct{}, Nexthop]
|
|
|
|
type SysOps struct {
|
|
refCounter *ExclusionCounter
|
|
wgInterface iface.IWGIface
|
|
// prefixes is tracking all the current added prefixes im memory
|
|
// (this is used in iOS as all route updates require a full table update)
|
|
//nolint
|
|
prefixes map[netip.Prefix]struct{}
|
|
//nolint
|
|
mu sync.Mutex
|
|
// notifier is used to notify the system of route changes (also used on mobile)
|
|
notifier *notifier.Notifier
|
|
}
|
|
|
|
func NewSysOps(wgInterface iface.IWGIface, notifier *notifier.Notifier) *SysOps {
|
|
return &SysOps{
|
|
wgInterface: wgInterface,
|
|
notifier: notifier,
|
|
}
|
|
}
|