Lines Matching full:connection
56 …connection state. The global packet buffer is large enough to contain one packet of maximum size. …
66 …connection, when a new connection has been set up, or when data has to be retransmitted. The appli…
67 …he data is known to be successfully delivered to the remote end of the connection. If the data nee…
71 The Connection Pointer</a></h4>
72 …connection that currently is handled, and is called the "current connection". The fields in the <a…
74 …0af9e7cf1e03725">uip_newdata()</a> is non-zero, the remote host of the connection has sent new dat…
78 The application can send only one chunk of data at a time on a connection and it is not possible to…
80 … time the periodic timer is invoked, the retransmission timer for each connection is decremented. …
83 …connection by calling the <a class="el" href="a00147.html#g61db1dcb7c760e4dd5d60bf4e5576dca">uip_c…
84 If the connection has been closed by the remote end, the test function <a class="el" href="a00147.h…
86 …l errors that can happen to a connection, either that the connection was aborted by the remote hos…
88 When a connection is idle, uIP polls the application every time the periodic timer fires. The appli…
89 …connection is idle, which allows the application to close connections that have been idle for too …
91 …connection request arrives on a listening port, uIP creates a new connection and calls the applica…
92 …ef="a00088.html">uip_conn</a> structure to check to which port the new connection was connected.<h…
94 …connection and sets a flag in the connection state which will open a TCP connection to the specifi…
96 …connection to TCP port 8080 of the remote end of the current connection. If there are not enough T…
103 The second example shows how to open a new connection to a specific IP address. No error checks are…
114 … The application listens for incoming connections on port 1234. When a connection has been establi…
129 …at this application prints out a welcoming "Welcome!" message when the connection has been establi…
179 …e the TCP port number of either the remote end or the local end of the connection. The example bel…
225 When the connection has been established, an HTTP request is sent to the server. Since this is the …
271 …nowledged, new data can be sent. If there is no more data to send, the connection is closed using …
273 …t process new data, act on acknowledged data, send new data, deal with connection establishment or…
303 …re true. If so, the appropriate error function is called. Also, if the connection has been closed,…
304 …connection has just been established by checking if <a class="el" href="a00147.html#gdb971fb1525d0…
305 …ight look. This application simply waits for any data to arrive on the connection, and responds to…
365 The application does not handle errors or connection closing events, and therefore the aborted(), t…
366 The connected() function will be called when a connection has been established, and in this case se…
367 …connection is in the "STATE_WAITING" state, and if so switches to the "STATE_HELLO" state and regi…
368 …message to be sent. If the application was in the "STATE_WORLD" state, it closes the connection.<p>
369 …ived, when data has been acknowledged, when a new connection has been established, when the connec…
386 …on call. If the incoming packet acknowledges previously sent data, the connection state is updated…
388 …a connection to listen for incoming connection requests. In uIP, a listening connection is identif…
391 …x application layer. Instead, uIP allows only a single TCP segment per connection to be unacknowle…
394 TCP continuously estimates the current Round-Trip Time (RTT) of every active connection in order to…
395 …. Each time the periodic timer fires, it increments a counter for each connection that has unackno…
397 … time the periodic timer is invoked, the retransmission timer for each connection is decremented. …
404 Since uIP only handles one in-flight TCP segment per connection, the amount of simultaneous segment…