Source File
node_net.go
Belonging Package
github.com/google/uuid
// Copyright 2017 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !js
package uuid
import
var interfaces []net.Interface // cached list of interfaces
// getHardwareInterface returns the name and hardware address of interface name.
// If name is "" then the name and hardware address of one of the system's
// interfaces is returned. If no interfaces are found (name does not exist or
// there are no interfaces) then "", nil is returned.
//
// Only addresses of at least 6 bytes are returned.
func getHardwareInterface( string) (string, []byte) {
if interfaces == nil {
var error
interfaces, = net.Interfaces()
if != nil {
return "", nil
}
}
for , := range interfaces {
if len(.HardwareAddr) >= 6 && ( == "" || == .Name) {
return .Name, .HardwareAddr
}
}
return "", nil
}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |