Please note that I am using lwip version 1.4.0

Thanks,
Rahul


On Fri, Jan 6, 2012 at 7:42 PM, Rahul Gundecha <[email protected]>wrote:

> Hi all,
>
> I am writing a dns client and is using UDP sockets for the same.
>
> I observed that UDP PCBs are not getting freed up, even after closing the
> sockets.
> In my code,  the sockets are closed by calling lwip_close().
>
> Call sequence here is:
> lwip_close -> netconn_delete -> netconn_free
>
> The comments on netconn_free() function says this -
>  * Delete a netconn and all its resources.
>  * The pcb is NOT freed (since we might not be in the right thread context
> do this).
>
> If this is the case, then which is the right place to free up the udp pcb?
> I tried to explicitly free up udp pcb associated with the socket by adding
> following code in netconn_delete(); still the problem persists.
>
> if(conn->pcb.udp != NULL) {
> udp_remove(conn->pcb.udp);
> }
>
> Thanks,
> Rahul
>
>
_______________________________________________
lwip-users mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/lwip-users

Reply via email to