aboutsummaryrefslogtreecommitdiff
path: root/net/bootp.c
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2023-10-14 16:47:52 -0400
committerTom Rini <trini@konsulko.com>2023-10-17 20:50:52 -0400
commit7ccc6044e964829459fa089da01b742a442df65e (patch)
treeaa4d5ffe4f0460347c9c3a98c59fa4e2488f005d /net/bootp.c
parent7d04986adf299624aba3015515b446c822b475a4 (diff)
downloadu-boot-7ccc6044e964829459fa089da01b742a442df65e.zip
u-boot-7ccc6044e964829459fa089da01b742a442df65e.tar.gz
u-boot-7ccc6044e964829459fa089da01b742a442df65e.tar.bz2
net: bootp: Move port numbers to header
These defines are useful when testing bootp. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'net/bootp.c')
-rw-r--r--net/bootp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/bootp.c b/net/bootp.c
index 8b1a4ae..2053cce 100644
--- a/net/bootp.c
+++ b/net/bootp.c
@@ -41,9 +41,6 @@
*/
#define TIMEOUT_MS ((3 + (CONFIG_NET_RETRY_COUNT * 5)) * 1000)
-#define PORT_BOOTPS 67 /* BOOTP server UDP port */
-#define PORT_BOOTPC 68 /* BOOTP client UDP port */
-
#ifndef CFG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
#define CFG_DHCP_MIN_EXT_LEN 64
#endif