Lines Matching full:application

21 <dl compact><dt><b>See also:</b></dt><dd><a class="el" href="a00143.html">Application programs</a> …
26 <a class="el" href="a00147.html">uIP functions called from application programs</a> (see below) and…
32 …s. The uIP TCP/IP implementation that is not tailored for any specific application.<h2><a class="a…
34application level protocols such as SMTP that is used to transfer e-mail. The uIP is mostly concer…
37application and the networking stack. An example of the first kind is "A TCP MUST be able to recei…
38 … size, we have removed certain mechanisms in the interface between the application and the stack, …
44 …ever block, but will return at once. When it returns, the stack or the application for which the i…
56application. Because the data in the buffer will be overwritten by the next incoming packet, the a…
57application sends dynamic data, it may use the parts of the global packet buffer that are not used…
59 Application Program Interface (API)</a></h2>
60 The Application Program Interface (API) defines the way the application program interacts with the …
66application is invoked in response to certain events. An application running on top of uIP is impl…
67application when doing retransmissions. Other TCP/IP stacks buffer the transmitted data in memory …
68application may be able to regenerate sent data and lets the application take part in retransmissi…
69 Application Events</a></h4>
70 The application must be implemented as a C function, <a class="el" href="a00153.html#g41aa744caa469…
72application is called by uIP, the global variable <a class="el" href="a00088.html">uip_conn</a> is…
74 … buffered by uIP, but will be overwritten after the application function returns, and the applicat…
76application according to the available buffer space and the current TCP window advertised by the r…
77application sends data by using the uIP function <a class="el" href="a00147.html#g04b053a623aac7cd…
78application can send only one chunk of data at a time on a connection and it is not possible to ca…
80 …at the application takes an active part in performing the retransmission. When uIP decides that a …
81application must check the <a class="el" href="a00147.html#ga8933ad15a2e2947dae4a5cff50e6007">uip_…
83application closes the current connection by calling the <a class="el" href="a00147.html#g61db1dcb…
84 ….html#gef6c4140c632b6a406779342cf3b6eb6">uip_closed()</a> is true. The application may then do any…
86 …mes and has been aborted. uIP reports this by calling the application function. The application ca…
88 When a connection is idle, uIP polls the application every time the periodic timer fires. The appli…
89application periodically know that a connection is idle, which allows the application to close con…
91application function. The test function <a class="el" href="a00147.html#gdb971fb1525d0c5002f52125b…
92 The application can check the lport field in the <a class="el" href="a00088.html">uip_conn</a> stru…
113 A Very Simple Application</a></h3>
114 …ery simple application. The application listens for incoming connections on port 1234. When a conn…
115application is shown below. The application is initialized with the function called example1_init(…
126application function example1_app() uses the test functions <a class="el" href="a00147.html#g26a14…
127 A More Advanced Application</a></h3>
128 This second example is slightly more advanced than the previous one, and shows how the application
129application is similar to the first application in that it listens to a port for incoming connecti…
130application is implemented. The reason for the increase in complexity is that if data should be lo…
131application knows that as long as the "Welcome!" message has not been acknowledged by the remote h…
132application, the application sends the "Welcome!" message and sets it's state to WELCOME-SENT. Whe…
133application is requested to retransmit the last message, it looks at in which state the applicatio…
134 The implementation of this application is seen below. This configuration settings for the applicati…
174 The configuration for the application:<p>
179 …ection. The example below shows how the two examples above can be combined into one application.<p>
197 This example shows a simple application that connects to a host, sends an HTTP request for a file a…
225 …t is sent to the server. Since this is the only data that is sent, the application knows that if i…
226 When the application receives new data from the remote host, it sends this data to the device by us…
227application stops the data from the remote host by calling the uIP function <a class="el" href="a0…
229application that listens to two ports and uses the port number to determine which file to send. If…
270application state consists of a pointer to the data that should be sent and the size of the data t…
271 The application is driven by incoming acknowledgments. When data has been acknowledged, new data ca…
272 Structured Application Program Design</a></h3>
273 …program is divided into an uIP event handler function that calls seven application handler functio…
304 …to be done when the connection is established, such as intializing the application state for the c…
305application serves as an example of how the application handler functions might look. This applica…
364application state consists of a "state" variable, a "textptr" pointer to a text message and the "t…
365 The application does not handle errors or connection closing events, and therefore the aborted(), t…
368application state. If the application was in the "STATE_HELLO" state, it switches state to "STATE_…
370 It is important to note that the senddata() function never should affect the application state; thi…
386application, the application is invoked by the means of the application function call. If the inco…
391 …at does not buffer sent packets will have to be supported by a complex application layer. Instead,…
398application takes an active part in performing the retransmission. When uIP decides that a segment…
401 In uIP, the application cannot send more data than the receiving host can buffer. And application c…
406application-to-application notification mechanism, which can be used by an application to mark par…
410 …erefore there is no need to copy data between the TCP/IP stack and the application program. With a…
411 … updating a few counters and flags before handing the data over to the application. Thus an estima…