Re: [lwip-users] Using BOOTP with lwIP

2017-08-10 Thread Amit Ashara
Thansk Simon. That did the trick. Just an information to anyone looking for it, I put the following define in my project lwipopts.h #define LWIP_IP_ACCEPT_UDP_PORT(dst_port) ((dst_port) == PP_NTOHS(68)) #define LWIP_DHCP 0 // default is 0 On Wed, Aug 9, 2017 at

[lwip-users] Using BOOTP with lwIP

2017-08-09 Thread Amit Ashara
Hello All, I am trying to get BOOTP working with lwIP 1.4.1 stack. I am able to configure the device in STATIC IP address mode and send the BOOTP packet and have the BOOTP server send the BOOTP response. However the call back function for udp does not get invoked. After debugging the same, the