1
2
3
4
5
6
7
8
9
10
11
12
//! Additional init functionalities performed by ROFL apps when running in a virtual machine
//! environment (e.g. Intel TDX).

#[cfg(feature = "tdx")]
mod tdx;

/// Perform post-registration initialization. This will set up things like external networking
/// support inside the virtual machine.
pub(crate) fn post_registration_init() {
    #[cfg(feature = "tdx")]
    tdx::post_registration_init();
}