mirror of
https://github.com/netbirdio/netbird.git
synced 2025-06-30 06:32:07 +02:00
.devcontainer
.github
base62
client
android
anonymize
cmd
errors
firewall
iface
bind
configurer
device
freebsd
errors.go
iface.go
iface_internal_test.go
link.go
mocks
netstack
wgproxy
device.go
device_android.go
iface.go
iface_create.go
iface_create_android.go
iface_create_darwin.go
iface_destroy_bsd.go
iface_destroy_linux.go
iface_destroy_mobile.go
iface_destroy_windows.go
iface_guid_windows.go
iface_moc.go
iface_new_android.go
iface_new_darwin.go
iface_new_ios.go
iface_new_unix.go
iface_new_windows.go
iface_test.go
iwginterface.go
iwginterface_windows.go
internal
ios
proto
server
ssh
system
testdata
ui
Dockerfile
installer.nsis
main.go
manifest.xml
netbird.wxs
resources.rc
dns
docs
encryption
formatter
infrastructure_files
management
relay
release_files
route
sharedsock
signal
util
version
.editorconfig
.gitattributes
.gitignore
.golangci.yaml
.goreleaser.yaml
.goreleaser_ui.yaml
.goreleaser_ui_darwin.yaml
AUTHORS
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CONTRIBUTOR_LICENSE_AGREEMENT.md
LICENSE
README.md
SECURITY.md
funding.json
go.mod
go.sum
versioninfo.json
9 lines
151 B
Go
9 lines
151 B
Go
package freebsd
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrDoesNotExist = errors.New("does not exist")
|
|
ErrNameDoesNotMatch = errors.New("name does not match")
|
|
)
|