Lines Matching refs:sent
30 * TCP data is sent by enqueueing the data with a call to tcp_write() and
491 * For tcp_close(), a RST is sent if the application didn't receive all data
523 /* Deallocate the pcb since we already sent a RST for it */
601 /* To ensure all data has been sent when tcp_close returns, we have
603 Since we don't really have to ensure all data has been sent when tcp_close
604 returns (unsent data is sent from tcp timer functions, also), we don't care
718 * @param reset boolean to indicate whether a reset should be sent
1092 * Returns how much extra window would be advertised if we sent an
1160 * Otherwise wait for a packet to be sent in the normal course of
1229 * ERR_OK if connect request has been sent
1230 * other err_t values if connect request couldn't be sent
1375 u8_t pcb_reset; /* flag if a RST should be sent when removing */
1506 /* Check if KEEPALIVE should be sent */
2207 * @param pcb tcp_pcb to set the sent callback
2208 * @param sent callback function to call for this pcb when data is successfully sent
2211 tcp_sent(struct tcp_pcb *pcb, tcp_sent_fn sent)
2215 LWIP_ASSERT("invalid socket state for sent callback", pcb->state != LISTEN);
2216 pcb->sent = sent;
2326 LWIP_DEBUGF(TCP_DEBUG, ("tcp_pcb_purge: not all data sent\n"));
2352 * Purges the PCB and removes it from a PCB list. Any delayed ACKs are sent first.
2842 * received and before a SYN/ACK is sent, to allow to modify the very first
2843 * segment sent even on passive open. Naturally, the "accepted" callback of the