Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-09-07 Thread Noam Weissman
arjunan Sent: Wednesday, September 07, 2016 2:11 PM To: Mailing list for lwIP users Subject: Re: [lwip-users] LW IP - TCP instantaneous data transmission Thanks Noam, I got what you are saying. I could not work on this yet. I will try as you suggested. Regards Anand On Thu, Sep 1, 2016 at 12:26 AM

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-09-07 Thread anand arjunan
; *From:* lwip-users on > behalf of goldsi...@gmx.de > *Sent:* Wednesday, August 31, 2016 9:31 PM > *To:* Mailing list for lwIP users > *Subject:* Re: [lwip-users] LW IP - TCP instantaneous data transmission > > anand arjunan wrote: > > Should I do something in the http_sen

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-09-01 Thread Mike Fleetwood
de *Sent:* Wednesday, August 31, 2016 9:31 PM *To:* Mailing list for lwIP users *Subject:* Re: [lwip-users] LW IP - TCP instantaneous data transmission anand arjunan wrote: > Should I do something in the http_sent callback to make room for next > set of data ? I'm afraid I don't really und

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-09-01 Thread Noam Weissman
: lwip-users on behalf of goldsi...@gmx.de Sent: Wednesday, August 31, 2016 9:31 PM To: Mailing list for lwIP users Subject: Re: [lwip-users] LW IP - TCP instantaneous data transmission anand arjunan wrote: > Should I do something in the http_sent callback to make room for next > set of data

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-09-01 Thread Noam Weissman
[mailto:lwip-users-bounces+noam=silrd@nongnu.org] On Behalf Of anand arjunan Sent: Thursday, September 01, 2016 10:02 AM To: Mailing list for lwIP users Subject: Re: [lwip-users] LW IP - TCP instantaneous data transmission Thanks Noam, I will try this and get back. Regards Anand On Wed, Aug

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-09-01 Thread anand arjunan
l back you do the following > > // get another chank of data > > DataSize = PartToSend(FALSE, 0, Data); > > > > // call sending function and send another part > > tcp_write(...) > > > > > > The above will create the full buffer and send 2K an

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread Noam Weissman
@nongnu.org<mailto:silrd@nongnu.org>] On Behalf Of anand arjunan Sent: Wednesday, August 31, 2016 12:18 PM To: lwip-users@nongnu.org<mailto:lwip-users@nongnu.org> Subject: [lwip-users] LW IP - TCP instantaneous data transmission Hi, I am using LWIP (Raw TCP mode) (in FreeRTOS) for handlin

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread goldsi...@gmx.de
anand arjunan wrote: Should I do something in the http_sent callback to make room for next set of data ? I'm afraid I don't really understand your questions. As Noam said, have a look at the http server, I guess you can learn everything you need from there. SImon __

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread anand arjunan
Hi Simon, Once the data is sent and the acknowledgement is received; I think, LWIP is supposed to increment the tcp_sndbuf( ) value so that the next set of data can be sent right ? Should I do something in the http_sent callback to make room for next set of data ? Thanks Anand On Wed, Aug 31, 20

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread anand arjunan
f Of *anand arjunan > *Sent:* Wednesday, August 31, 2016 12:18 PM > *To:* lwip-users@nongnu.org > *Subject:* [lwip-users] LW IP - TCP instantaneous data transmission > > > > Hi, > > > > I am using LWIP (Raw TCP mode) (in FreeRTOS) for handling http page > reques

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread goldsimon
Calling tcp_output() sends the data, but that doesn't mean the buffer is free afterwards: it stays allocated until the remote host acknowledges it. At this point, lwip calls your 'sent' callback. Simon Gesendet mit AquaMail für Android http://www.aqua-mail.com Am 31. August 2016 12:22:08 na

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread anand arjunan
Hi Dirk, I agree, this function is called when the data is sent to the client. In my case this will be called only once when the buffer is full (8*1460 bytes) and the data is sent to the client. But, I am adding data to the buffer with tcp_write( ) with the increments of around 2 k bytes every few

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread Noam Weissman
: Wednesday, August 31, 2016 12:18 PM To: lwip-users@nongnu.org Subject: [lwip-users] LW IP - TCP instantaneous data transmission Hi, I am using LWIP (Raw TCP mode) (in FreeRTOS) for handling http page requests, construct the web page and send the page to the client. I have set the TCP_SND_BUF as 8

Re: [lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread Dirk Ziegelmeier
Check out tcp_sent() callback, it is called after data was successfully sent to remote station. http://www.nongnu.org/lwip/2_0_0/group__tcp__raw.html# ga1596332b93bb6249179f3b89f24bd808 Ciao Dirk -- Dirk Ziegelmeier * d...@ziegelmeier.net * http://www.ziegelmeier.net On Wed, Aug 31, 2016 at 11

[lwip-users] LW IP - TCP instantaneous data transmission

2016-08-31 Thread anand arjunan
Hi, I am using LWIP (Raw TCP mode) (in FreeRTOS) for handling http page requests, construct the web page and send the page to the client. I have set the TCP_SND_BUF as 8*TCP_MSS where TCP_MSS is 1460. There will be only one client / browser connecting to the system at a time. In the receive call