lwip: Fix the CI

This commit is contained in:
David Cermak
2022-03-31 11:51:56 +02:00
parent 09aa24632a
commit e7f19f39bc
4 changed files with 18 additions and 1 deletions

View File

@@ -27,6 +27,10 @@
#include "sntp/sntp_get_set_time.h"
#include "sockets_ext.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
-----------------------------------------------
---------- Platform specific locking ----------
@@ -1444,4 +1448,8 @@ static inline uint32_t timeout_from_offered(uint32_t lease, uint32_t min)
#define mem_clib_calloc calloc
#endif /* CONFIG_WIFI_LWIP_ALLOCATION_FROM_SPIRAM_FIRST */
#ifdef __cplusplus
}
#endif
#endif /* LWIP_HDR_ESP_LWIPOPTS_H */

View File

@@ -301,3 +301,11 @@ uint32_t esp_random(void)
// Preparation for injecting favorable random numbers
return g_random_numbers[g_random_numbers_cnt++ % 8];
}
void dhcp_parse_extra_opts(struct dhcp *dhcp, uint8_t state, uint8_t option, uint8_t len, struct pbuf* p, uint16_t offset)
{
}
void dhcp_append_extra_opts(struct netif *netif, uint8_t state, struct dhcp_msg *msg_out, uint16_t *options_out_len)
{
}

View File

@@ -1 +1,2 @@
CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=n
CONFIG_FREERTOS_SMP=n