From 263251da75342817c69cdfc7dd0d4deb0e9f9637 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Sun, 13 Mar 2022 20:43:16 +0000 Subject: [PATCH] ip/dhcpd: ignore icmp advice should ignore advice as we are handling all connections thru a single udp connection. --- sys/src/cmd/ip/dhcpd/dhcpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/src/cmd/ip/dhcpd/dhcpd.c b/sys/src/cmd/ip/dhcpd/dhcpd.c index f6323f535..93b83c8f8 100644 --- a/sys/src/cmd/ip/dhcpd/dhcpd.c +++ b/sys/src/cmd/ip/dhcpd/dhcpd.c @@ -1342,7 +1342,7 @@ openlisten(char *net) fatal("can't announce: %r"); if(fprint(cfd, "headers") < 0) fatal("can't set header mode: %r"); - + fprint(cfd, "ignoreadvice"); sprint(data, "%s/data", devdir); fd = open(data, ORDWR); if(fd < 0)