proxmox_async: move io::udp to net::udp

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2022-02-02 12:47:06 +01:00
parent 9ebf24b4f8
commit 807a70cecc
4 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,3 @@
mod async_channel_writer;
pub use async_channel_writer::AsyncChannelWriter;
pub mod udp;

View File

@ -2,6 +2,7 @@ pub mod blocking;
pub mod broadcast_future;
pub mod compression;
pub mod io;
pub mod net;
pub mod runtime;
pub mod stream;
pub mod zip;

View File

@ -0,0 +1 @@
pub mod udp;