From be7992e639736ff9d6d59d0e27ed1c40e71e026c Mon Sep 17 00:00:00 2001 From: Kartik Singhal Date: Wed, 9 Nov 2016 12:10:07 -0500 Subject: [PATCH] This works only for IPv4 addresses --- examples/echo-udp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/echo-udp.rs b/examples/echo-udp.rs index d8266ea95..0b9004df9 100644 --- a/examples/echo-udp.rs +++ b/examples/echo-udp.rs @@ -9,7 +9,7 @@ //! and in another terminal you can run: //! //! ```sh -//! $ echo -n "hello" | nc -4u localhost 8080 +//! $ nc -4u localhost 8080 //! ``` //! //! Each line you type in to the `nc` terminal should be echo'd back to you!