package vsock
import "github.com/linuxkit/virtsock/pkg/vsock"
Package vsock provides the Linux guest bindings to VM sockets. VM sockets are a generic mechanism for guest<->host communication. It was originally developed for VMware but now also supports virtio sockets and (soon) Hyper-V sockets.
The main purpose is to provide bindings to the Linux implementation of VM sockets, based on the low level support in golang.org/x/sys/unix.
The package also provides bindings to the host interface to virtio sockets for HyperKit on macOS.
Index ¶
- Constants
- func Listen(cid, port uint32) (net.Listener, error)
- func SocketMode(m string)
- type Addr
- type Conn
Constants ¶
const ( // CIDAny is a wildcard CID CIDAny = 4294967295 // 2^32-1 // CIDHypervisor is the reserved CID for the Hypervisor CIDHypervisor = 0 // CIDHost is the reserved CID for the host system CIDHost = 2 )
Functions ¶
func Listen ¶
Listen returns a net.Listener which can accept connections on the given port
func SocketMode ¶
func SocketMode(m string)
SocketMode is a NOOP on Linux
Types ¶
type Addr ¶
Addr represents the address of a vsock end point.
func (Addr) Network ¶
Network returns the network type for a Addr
func (Addr) String ¶
String returns a string representation of a Addr
type Conn ¶
Conn is a vsock connection which supports half-close.
func Dial ¶
Dial connects to the CID.Port via virtio sockets
Source Files ¶
- Version
- v0.0.0-20241009230534-cb6a20cc0422 (latest)
- Published
- Oct 9, 2024
- Platform
- linux/amd64
- Imports
- 6 packages
- Last checked
- 2 months ago –
Tools for package owners.