github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/drivers/qemu/driver_bsd.go (about) 1 //go:build darwin || freebsd || netbsd || openbsd 2 // +build darwin freebsd netbsd openbsd 3 4 package qemu 5 6 const ( 7 // https://man.openbsd.org/unix.4#ADDRESSING 8 // https://www.freebsd.org/cgi/man.cgi?query=unix 9 // https://github.com/apple/darwin-xnu/blob/main/bsd/man/man4/unix.4#L72 10 // https://man.netbsd.org/unix.4#ADDRESSING 11 maxSocketPathLen = 104 12 )