From mboxrd@z Thu Jan 1 00:00:00 1970 From: Philippe REYNES Date: Mon, 31 Aug 2020 19:32:24 +0200 (CEST) Subject: [PATCH] net: add a generic udp protocol In-Reply-To: <20200821205456.GD20605@bill-the-cat> References: <1598032505-17045-1-git-send-email-philippe.reynes@softathome.com> <20200821205456.GD20605@bill-the-cat> Message-ID: <2042071285.809594.1598895144094.JavaMail.zimbra@softathome.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom > On Fri, Aug 21, 2020 at 07:55:05PM +0200, Philippe Reynes wrote: > >> This commit adds a generic udp protocol framework in the >> network loop. So protocol based on udp may be implemented >> without modifying the network loop (for example custom >> wait magic packet). >> >> Signed-off-by: Philippe Reynes >> --- >> include/net.h | 2 +- >> include/net/udp.h | 31 +++++++++++++++++++++++++++++++ >> net/Kconfig | 6 ++++++ >> net/Makefile | 1 + >> net/net.c | 15 ++++++++++++++- >> net/udp.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ >> 6 files changed, 101 insertions(+), 2 deletions(-) >> create mode 100644 include/net/udp.h >> create mode 100644 net/udp.c > > At minimum we need to enable this on sandbox. Would it be possible to > test this somehow on sandbox (where we have networking) with netcat or > something from the host? I've sent a v2 with this feature enable on sandbox. I have tested it on sandbox by adding a simple/silly command "wait for magic packet" (using debug code). I'm looking for a way to add a test in test/dm/eth.c or test/py/tests/test_net.py. > -- > Tom Philippe