virtio_vsock/lib.rs
1// Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2//
3// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
4
5//! A crate that provides vsock device specific components as described
6//! by the virtio specification.
7
8#![deny(missing_docs)]
9
10/// Contains a vsock packet abstraction.
11pub mod packet;