Re: [lwip-users] UDP raw sockets data limit

2017-08-25 Thread Sergio R. Caprile
The POOL is for rx msgs, you should not use it for tx, you should use PBUF_RAM for tx. Are you ? if((p = pbuf_alloc(PBUF_TRANSPORT, MSG_LEN, PBUF_RAM)) != NULL) Where is lwIP running, in the client ? (I guess) in the server ? in both ? Did you actually see what happens

Re: [lwip-users] UDP raw sockets data limit

2017-08-25 Thread parwath . r
Hi, Thanks for your reply, we are using raw. PFA for lwipopts.h thanks parwath On 2017-08-25 05:41, Sergio R. Caprile wrote: "raw" or "socket" ??? Which one is your API ? Please capture and post your traffic Please attach your lwipopts ___

Re: [lwip-users] UDP raw sockets data limit

2017-08-25 Thread Sergio R. Caprile
"raw" or "socket" ??? Which one is your API ? Please capture and post your traffic Please attach your lwipopts ___ lwip-users mailing list lwip-users@nongnu.org https://lists.nongnu.org/mailman/listinfo/lwip-users

[lwip-users] UDP raw sockets data limit

2017-08-24 Thread parwath
Hi, We are using lwip 2.0.2 stack with pppos. We are using UDP raw client sockets we are able to send less than 200 bytes server is recived data properly. but when we tried to send more than 250 bytes in udp raw client socket, the udp_send is giving success and server is not recived any data.