vmswitch/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Crate to interact with the Windows vmswitch-based virtual networking
//! capabilities, including the vmswitch and the HCN/HNS service.

#![cfg(windows)]
#![expect(missing_docs)]
// UNSAFETY: Calling Win32 VMS and HCN APIs.
#![expect(unsafe_code)]
#![expect(clippy::undocumented_unsafe_blocks)]

pub mod dio;
pub mod hcn;
pub mod kernel;
mod vmsif;