btcd/btcutil/net.go
2026-05-14 16:16:14 -07:00

19 lines
555 B
Go

// Copyright (c) 2013-2014 The btcsuite developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
//go:build !android && !appengine
// +build !android,!appengine
package btcutil
import (
"net"
)
// InterfaceAddrs returns a list of the system's network interface addresses.
// It is wrapped here so that we can substitute it for other functions when
// building for systems that do not allow access to net.InterfaceAddrs().
func InterfaceAddrs() ([]net.Addr, error) {
return net.InterfaceAddrs()
}