mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 08:03:30 +01:00
fd67892cb4
Refactor the flat code structure
27 lines
495 B
Go
27 lines
495 B
Go
//go:build !windows
|
|
|
|
package configurer
|
|
|
|
import (
|
|
"net"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"golang.zx2c4.com/wireguard/ipc"
|
|
)
|
|
|
|
func openUAPI(deviceName string) (net.Listener, error) {
|
|
uapiSock, err := ipc.UAPIOpen(deviceName)
|
|
if err != nil {
|
|
log.Errorf("failed to open uapi socket: %v", err)
|
|
return nil, err
|
|
}
|
|
|
|
listener, err := ipc.UAPIListen(deviceName, uapiSock)
|
|
if err != nil {
|
|
log.Errorf("failed to listen on uapi socket: %v", err)
|
|
return nil, err
|
|
}
|
|
|
|
return listener, nil
|
|
}
|