...

Source file src/github.com/rs/xid/hostid_freebsd.go

Documentation: github.com/rs/xid

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

View as plain text