2015-05-01 19:41:58 +02:00
|
|
|
// Copyright (c) 2013-2014 The btcsuite developers
|
2014-08-29 10:44:41 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +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()
|
|
|
|
}
|