1// SPDX-FileCopyrightText: Copyright The Lima Authors 2// SPDX-License-Identifier: Apache-2.0 3 4package freeport 5 6import "github.com/lima-vm/lima/v2/pkg/windows" 7 8func VSock() (int, error) { 9 return windows.GetRandomFreeVSockPort(0, 2147483647) 10} 11 12