vm-linux 0.1.0

KVM backend for Hanzo VM
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct VirtioSocketDevice;

impl VirtioSocketDevice {
    pub fn new() -> Self {
        VirtioSocketDevice
    }
}

impl Default for VirtioSocketDevice {
    fn default() -> Self {
        Self::new()
    }
}