From bd78b82b8ede293106eacafd24f1529c651d1c0e Mon Sep 17 00:00:00 2001 From: Jonah Dahlquist Date: Tue, 13 Aug 2019 20:17:52 -0500 Subject: [PATCH] Comment for checking socket at run-time --- src/w5500.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/w5500.rs b/src/w5500.rs index a3e182b..4bf2d95 100644 --- a/src/w5500.rs +++ b/src/w5500.rs @@ -51,6 +51,7 @@ impl W5500 { } pub fn open_udp_socket(&self, socket: SocketImpl) -> UdpSocket { + // TODO compare socket to sockets list UdpSocket::new(socket) } }