Lines Matching full:data

12     <li><a href="classes.html"><span>Data&nbsp;Structures</span></a></li>
49 The TCP and IP protocols implement a checksum that covers the data and header portions of the TCP a…
56data, the TCP/IP stack will notify the corresponding application. Because the data in the buffer w…
57data. If the application sends dynamic data, it may use the parts of the global packet buffer that…
66data is received, when data has been successfully delivered to the other end of the connection, wh…
67data in memory until the data is known to be successfully delivered to the remote end of the conne…
68data and lets the application take part in retransmissions. uIP does not keep track of packet cont…
70 …ts can happen in conjunction with each other (i.e., new data can arrive at the same time as data i…
73 Receiving Data</a></h4>
74data. The uip_appdata pointer point to the actual data. The size of the data is obtained through t…
75 Sending Data</a></h4>
76data, uIP adjusts the length of the data sent by the application according to the available buffer…
77data by using the uIP function <a class="el" href="a00147.html#g04b053a623aac7cd4195157d470661b3">…
78data at a time on a connection and it is not possible to call <a class="el" href="a00147.html#g04b…
79 Retransmitting Data</a></h4>
81data that was previously sent. From the application's standpoint, performing a retransmission is n…
86 …aborted by the remote host, or that the connection retransmitted the last data too many times and …
89 … new data that has been produced. The application can only send data when invoked by uIP, and ther…
114 …4. When a connection has been established, the application replies to all data sent to it by sayin…
126 …because the remote end has sent it data, it responds with an "ok". If the application function was…
129 …ion in that it listens to a port for incoming connections and responds to data sent to it with a s…
130 …or the increase in complexity is that if data should be lost in the network, the application must …
131 …on can be sure that the welcome has been received and knows that any lost data must be an "ok" mes…
132 …ion moves to the WELCOME-ACKED state. If the application receives any new data from the remote hos…
225 … the server. Since this is the only data that is sent, the application knows that if it needs to r…
226data from the remote host, it sends this data to the device by using the function device_enqueue()…
227data from the remote host by calling the uIP function <a class="el" href="a00147.html#g0a8bb9d6d0f…
270data that should be sent and the size of the data that is left to send. When a remote host connect…
271 …iven by incoming acknowledgments. When data has been acknowledged, new data can be sent. If there …
273 … seven application handler functions that process new data, act on acknowledged data, send new dat…
304 …. Since it may be the case that data should be sent out, the senddata() function is called to deal…
305 …ht look. This application simply waits for any data to arrive on the connection, and responds to t…
364 …an be either "STATE_WAITING", meaning that the application is waiting for data to arrive from the …
367 When new data arrives from the network, the newdata() function will be called by the event handler …
368data that previously was sent has been acknowleged by the receiving host. This acked() function fi…
369data that is to be sent. It is called by the event handler function when new data has been receive…
386data that is to be delivered to the application, the application is invoked by the means of the ap…
390 Most TCP implementations use a sliding window mechanism for sending data. Multiple data segments ar…
395 …ires, it increments a counter for each connection that has unacknowledged data in the network. Whe…
398data that was previously sent. From the application's standpoint, performing a retransmission is n…
400 …ent indicates its available buffer space. A TCP sender must not send more data than the buffer spa…
401data than the receiving host can buffer. And application cannot send more data than the amount of …
405 Urgent Data</a></h4>
406data mechanism provides an application-to-application notification mechanism, which can be used by…
407data feature increases the complexity of the implementation because it requires an asynchronous no…
409data and context switching. Operating systems for high-end systems often have multiple protection …
410 …o run a multitasking operating system. Therefore there is no need to copy data between the TCP/IP …
411data from the network device to host memory, and checksum calculation. Apart from the checksum cal…
415 Thus the maximum throughput equation when sending data from uIP will be $p = s / (t + t_d)$ where $…
416 …large amounts of data to send, the delayed acknowledgmen t throughput degradation of uIP need not …