gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

hostid_freebsd.go (139B)


      1 // +build freebsd
      2 
      3 package xid
      4 
      5 import "syscall"
      6 
      7 func readPlatformMachineID() (string, error) {
      8 	return syscall.Sysctl("kern.hostuuid")
      9 }