mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-02 04:53:51 +01:00
22 lines
382 B
Go
22 lines
382 B
Go
package networkmonitor
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"sync"
|
|
)
|
|
|
|
var ErrStopped = errors.New("monitor has been stopped")
|
|
|
|
// NetworkMonitor watches for changes in network configuration.
|
|
type NetworkMonitor struct {
|
|
cancel context.CancelFunc
|
|
wg sync.WaitGroup
|
|
mu sync.Mutex
|
|
}
|
|
|
|
// New creates a new network monitor.
|
|
func New() *NetworkMonitor {
|
|
return &NetworkMonitor{}
|
|
}
|