Skip to main content

vm_ch/
socket.rs

1pub struct VirtioSocketDevice;
2
3impl VirtioSocketDevice {
4    pub fn new() -> Self {
5        VirtioSocketDevice
6    }
7}
8
9impl Default for VirtioSocketDevice {
10    fn default() -> Self {
11        Self::new()
12    }
13}