1//! Virtio network device driver.
2//!
3//! Provides smoltcp types for use with the virtio network device.
4mod hal;
5mod tcp;
6mod transport;
78pub use tcp::{get_device, DeviceWrapper};
9pub use transport::TwizzlerTransport;
10pub use virtio_drivers::device::net::{RxBuffer, TxBuffer};