1//go:build !windows 2 3// SPDX-FileCopyrightText: Copyright The Lima Authors 4// SPDX-License-Identifier: Apache-2.0 5 6package freeport 7 8import "errors" 9 10func VSock() (int, error) { 11 return 0, errors.New("freeport.VSock is not implemented for non-Windows hosts") 12} 13 14