1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

Replace r_rand with os_random for LWIP_RAND() (#3499)

This commit is contained in:
Shelby Merrick 2017-08-07 08:40:11 -04:00 committed by Ivan Grokhotkov
parent 8f04be4c5b
commit d425438839
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -96,7 +96,7 @@ void igmp_input(struct pbuf *p, struct netif *inp, ip_addr_t *dest)ICACHE_FLAS
err_t igmp_joingroup(ip_addr_t *ifaddr, ip_addr_t *groupaddr)ICACHE_FLASH_ATTR;
err_t igmp_leavegroup(ip_addr_t *ifaddr, ip_addr_t *groupaddr)ICACHE_FLASH_ATTR;
void igmp_tmr(void)ICACHE_FLASH_ATTR;
#define LWIP_RAND() r_rand()
#define LWIP_RAND() os_random()
#ifdef __cplusplus
}
#endif