diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-03-13 20:43:16 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-03-13 20:43:16 +0000 |
commit | 263251da75342817c69cdfc7dd0d4deb0e9f9637 (patch) | |
tree | 8c0e7b27b684a24e80cc579ddd04938908d8f5ad /sys/src/cmd/ip | |
parent | 5186cb3b998d9428d724710f0e9300a58884c261 (diff) |
ip/dhcpd: ignore icmp advice
should ignore advice as we are handling all connections
thru a single udp connection.
Diffstat (limited to 'sys/src/cmd/ip')
-rw-r--r-- | sys/src/cmd/ip/dhcpd/dhcpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |