matterbridge/vendor/github.com/rs/xid/hostid_freebsd.go

10 lines
139 B
Go
Raw Normal View History

2018-05-27 21:48:57 +02:00
// +build freebsd
package xid
import "syscall"
2018-05-27 21:48:57 +02:00
func readPlatformMachineID() (string, error) {
return syscall.Sysctl("kern.hostuuid")
2018-05-27 21:48:57 +02:00
}