mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 01:45:44 +03:00
16 lines
426 B
Go
16 lines
426 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//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
|
|
)
|