diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:59:15 +0000 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 17:52:53 -0500 |
commit | ece223b52ae9ab94f7ae83a9ac49b9f6319a94cb (patch) | |
tree | 1d2c3ec21e2802f52bb6d95b25ae16ad9d97cad8 /net/bootp.c | |
parent | 22f6e99d5b0c54758646334c1153737a5585bd57 (diff) | |
download | u-boot-imx-ece223b52ae9ab94f7ae83a9ac49b9f6319a94cb.zip u-boot-imx-ece223b52ae9ab94f7ae83a9ac49b9f6319a94cb.tar.gz u-boot-imx-ece223b52ae9ab94f7ae83a9ac49b9f6319a94cb.tar.bz2 |
net: Refactor to separate the UDP handler from the ARP handler
Call a built-in dummy if none is registered... don't require
protocols to register a handler (eliminating dummies)
NetConsole now uses the ARP handler when waiting on arp
(instead of needing a #define hack in arp.c)
Clear handlers at the end of net loop
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net/bootp.c')
-rw-r--r-- | net/bootp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bootp.c b/net/bootp.c index b472051..b36abac 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -669,9 +669,9 @@ BootpRequest(void) #if defined(CONFIG_CMD_DHCP) dhcp_state = SELECTING; - NetSetHandler(DhcpHandler); + net_set_udp_handler(DhcpHandler); #else - NetSetHandler(BootpHandler); + net_set_udp_handler(BootpHandler); #endif NetSendPacket(NetTxPacket, pktlen); } |