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 !jspackage uuidimportvar 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 ( string) (string, []byte) {if interfaces == nil {var errorinterfaces, = 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.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |