mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 08:03:30 +01:00
fd67892cb4
Refactor the flat code structure
23 lines
403 B
Go
23 lines
403 B
Go
//go:build linux && !android
|
|
|
|
package iface
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/vishvananda/netlink"
|
|
)
|
|
|
|
func (w *WGIface) Destroy() error {
|
|
link, err := netlink.LinkByName(w.Name())
|
|
if err != nil {
|
|
return fmt.Errorf("failed to get link by name %s: %w", w.Name(), err)
|
|
}
|
|
|
|
if err := netlink.LinkDel(link); err != nil {
|
|
return fmt.Errorf("failed to delete link %s: %w", w.Name(), err)
|
|
}
|
|
|
|
return nil
|
|
}
|