]> git.baikalelectronics.ru Git - uboot.git/commit
net: add a generic udp protocol
authorPhilippe Reynes <philippe.reynes@softathome.com>
Fri, 18 Sep 2020 12:13:00 +0000 (14:13 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 30 Sep 2020 20:55:03 +0000 (16:55 -0400)
commit43948e006b8eb3cff3b799ad2e24a1a6ebed2f73
tree5ae63ab33c462f8c016a61f31eea62c8240dd6e5
parent9d50ee7fa7c042f444eece51a440e15ac77728ea
net: add a generic udp protocol

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 <philippe.reynes@softathome.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
doc/README.udp [new file with mode: 0644]
include/net.h
include/net/udp.h [new file with mode: 0644]
net/Kconfig
net/Makefile
net/net.c
net/udp.c [new file with mode: 0644]