2023-04-10 15:36:59 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-08-04 16:10:35 +00:00
|
|
|
//go:build darwin || freebsd || netbsd || openbsd
|
|
|
|
// +build darwin freebsd netbsd openbsd
|
|
|
|
|
|
|
|
package qemu
|
|
|
|
|
|
|
|
const (
|
|
|
|
// https://man.openbsd.org/unix.4#ADDRESSING
|
|
|
|
// https://www.freebsd.org/cgi/man.cgi?query=unix
|
|
|
|
// https://github.com/apple/darwin-xnu/blob/main/bsd/man/man4/unix.4#L72
|
|
|
|
// https://man.netbsd.org/unix.4#ADDRESSING
|
|
|
|
maxSocketPathLen = 104
|
|
|
|
)
|