diff --git a/src/ap/fils_hlp.c b/src/ap/fils_hlp.c index 40d9be145..3fc872139 100644 --- a/src/ap/fils_hlp.c +++ b/src/ap/fils_hlp.c @@ -269,8 +269,8 @@ static void fils_dhcp_handler(int sd, void *eloop_ctx, void *sock_ctx) udph = wpabuf_put(resp, sizeof(*udph)); udph->uh_sport = htons(DHCP_SERVER_PORT); udph->uh_dport = htons(DHCP_CLIENT_PORT); - udph->len = htons(sizeof(*udph) + (end - pos)); - udph->check = htons(0x0000); /* TODO: calculate checksum */ + udph->uh_ulen = htons(sizeof(*udph) + (end - pos)); + udph->uh_sum = htons(0x0000); /* TODO: calculate checksum */ if (hapd->conf->dhcp_rapid_commit_proxy && msgtype == DHCPACK && !rapid_commit && sta->fils_dhcp_rapid_commit_proxy && end_opt) { /* Add rapid commit option */ diff --git a/src/common/dhcp.h b/src/common/dhcp.h index f2ef61eca..e38512c24 100644 --- a/src/common/dhcp.h +++ b/src/common/dhcp.h @@ -10,7 +10,13 @@ #define DHCP_H #include +#if __FAVOR_BSD #include +#else +#define __FAVOR_BSD 1 +#include +#undef __FAVOR_BSD +#endif #define DHCP_SERVER_PORT 67 #define DHCP_CLIENT_PORT 68