mirror of
https://github.com/btcsuite/btcd.git
synced 2024-11-19 09:50:08 +01:00
ba5407615d
The doc formatting changes introduced in the recent go version is increasing the diff for all of the new commits. Formatting it all in this commit will help the readability of future PRs by reducing the diff.
20 lines
534 B
Go
20 lines
534 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 !appengine
|
|
// +build !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()
|
|
}
|