Add UDP sockets

This commit is contained in:
Alex Crichton
2016-08-02 22:49:58 -07:00
parent 1b07e91834
commit 260255e674
2 changed files with 240 additions and 0 deletions
+2
View File
@@ -22,6 +22,7 @@ extern crate log;
mod readiness_stream;
mod event_loop;
mod tcp;
mod udp;
#[path = "../../src/slot.rs"]
mod slot;
#[path = "../../src/lock.rs"]
@@ -30,3 +31,4 @@ mod lock;
pub use event_loop::{Loop, LoopHandle};
pub use readiness_stream::ReadinessStream;
pub use tcp::{TcpListener, TcpStream};
pub use udp::UdpSocket;