podman

Форк
0
33 строки · 949.0 Байт
1
// Copyright 2017 Google Inc.  All rights reserved.
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4

5
// +build !js
6

7
package uuid
8

9
import "net"
10

11
var interfaces []net.Interface // cached list of interfaces
12

13
// getHardwareInterface returns the name and hardware address of interface name.
14
// If name is "" then the name and hardware address of one of the system's
15
// interfaces is returned.  If no interfaces are found (name does not exist or
16
// there are no interfaces) then "", nil is returned.
17
//
18
// Only addresses of at least 6 bytes are returned.
19
func getHardwareInterface(name string) (string, []byte) {
20
	if interfaces == nil {
21
		var err error
22
		interfaces, err = net.Interfaces()
23
		if err != nil {
24
			return "", nil
25
		}
26
	}
27
	for _, ifs := range interfaces {
28
		if len(ifs.HardwareAddr) >= 6 && (name == "" || name == ifs.Name) {
29
			return ifs.Name, ifs.HardwareAddr
30
		}
31
	}
32
	return "", nil
33
}
34

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.