Hi,
On 10/13/25 06:58, Amos Jeffries wrote:
On 13/10/2025 05:00, Joan Lledó wrote:
Hi Hurd,
This series of patches implements a port of dhcpcd to the Hurd. It
works but has
some limitations that could be fixed in the future. This is the
current state of
the port:
- Support only for IPv4. IPv6 not supported yet.
- It works only over lwip. First, because dhcpcd requires some
definitions from
headers and pfinet doesn't provide them AFAIK, but lwip provide
the headers
through the liblwip-dev package.
FMI, Which ones exactly? seems like an oversight in the Hurd pfinet.
From `#include <lwip/posix/inet.h>`
```
#ifdef LWIP_UNIX_HURD
#define IP_PKTINFO 8
struct in_pktinfo {
unsigned int ipi_ifindex; /* Interface index */
struct in_addr ipi_addr; /* Destination (from header) address */
};
#endif /* LWIP_UNIX_HURD */
```