aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2017-04-13main.rs: Try out TcpListenerTeddy Wing
Replicate the TcpListener example from the Rust standard library docs. Using TCP instead of UDP allows us to read directly to a string and read arbitrary length streams. Here we just print the stream input to the console.
2017-03-16main.rs: Copy UdpSocket example to test out socketsTeddy Wing
Copies the example given at https://doc.rust-lang.org/std/net/struct.UdpSocket.html to experiment with receiving and sending data over the socket.
2017-03-16Initial commit. Base project generated from `cargo init`.Teddy Wing
Rust v1.13.0. $ cargo init --bin