| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | altcp.h | 77 altcp_sent_fn sent; member 98 void altcp_sent(struct altcp_pcb *conn, altcp_sent_fn sent);
|
| A D | tcp.h | 352 tcp_sent_fn sent; member 417 void tcp_sent (struct tcp_pcb *pcb, tcp_sent_fn sent);
|
| /components/net/lwip-nat/ |
| A D | README.md | 5 In this case the network 213.129.231.168/29 is nat'ed when packets are sent to the
|
| A D | ipv4_nat.c | 613 u8_t sent = 0; in ip_nat_out() local 724 sent = 1; in ip_nat_out() 730 return sent; in ip_nat_out()
|
| /components/net/lwip/lwip-1.4.1/src/include/lwip/ |
| A D | tcp.h | 252 tcp_sent_fn sent; member 321 void tcp_sent (struct tcp_pcb *pcb, tcp_sent_fn sent);
|
| A D | tcp_impl.h | 221 if((pcb)->sent != NULL) \ 222 (ret) = (pcb)->sent((pcb)->callback_arg,(pcb),(space)); \
|
| /components/net/lwip/lwip-2.1.2/src/core/ |
| A D | altcp.c | 249 altcp_sent(struct altcp_pcb *conn, altcp_sent_fn sent) in altcp_sent() argument 252 conn->sent = sent; in altcp_sent()
|
| A D | altcp_tcp.c | 124 if (conn->sent) { in altcp_tcp_sent() 125 return conn->sent(conn->arg, conn, len); in altcp_tcp_sent()
|
| A D | tcp.c | 2031 tcp_sent(struct tcp_pcb *pcb, tcp_sent_fn sent) in tcp_sent() argument 2036 pcb->sent = sent; in tcp_sent()
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/ |
| A D | tcp.h | 295 tcp_sent_fn sent; member 358 void tcp_sent (struct tcp_pcb *pcb, tcp_sent_fn sent);
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | mdns.txt | 51 the multicast groups and any MDNS/legacy DNS requests sent unicast or multicast 108 Relevant information will be sent as additional records to reduce number of
|
| A D | rawapi.txt | 108 data sent, error notifications, poll timer expiration, connection 205 TCP data is sent by enqueueing the data with a call to 236 err_t (* sent)(void *arg, struct tcp_pcb *tpcb, 485 remain unchanged until sent. Because the send- (or write-)functions return
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | mdns.txt | 51 the multicast groups and any MDNS/legacy DNS requests sent unicast or multicast 108 Relevant information will be sent as additional records to reduce number of
|
| /components/net/lwip/lwip-2.1.2/test/unit/tcp/ |
| A D | test_tcp.c | 912 u8_t sent; in test_tcp_tx_full_window_lost() local 914 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, 1, 40U); in test_tcp_tx_full_window_lost() 916 EXPECT(sent == expected); in test_tcp_tx_full_window_lost() 1617 u8_t sent[TCP_MSS / 2]; in START_TEST() local 1619 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, TCP_MSS / 2, 40U); in START_TEST() 1621 EXPECT(memcmp(sent, &tx_data[3 * TCP_MSS], TCP_MSS / 2) == 0); in START_TEST() 1645 u8_t sent[TCP_MSS / 4]; in START_TEST() local 1647 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, TCP_MSS / 4, 40U); in START_TEST() 1649 EXPECT(memcmp(sent, &tx_data[(3 * TCP_MSS) + TCP_MSS / 2], TCP_MSS / 4) == 0); in START_TEST()
|
| /components/net/lwip/lwip-2.1.2/src/apps/http/ |
| A D | altcp_proxyconnect.c | 264 if (conn->sent) { in altcp_proxyconnect_lower_sent() 265 return conn->sent(conn->arg, conn, len); in altcp_proxyconnect_lower_sent()
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/priv/ |
| A D | tcp_priv.h | 191 if((pcb)->sent != NULL) \ 192 (ret) = (pcb)->sent((pcb)->callback_arg,(pcb),(space)); \
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/priv/ |
| A D | tcp_priv.h | 196 if((pcb)->sent != NULL) \ 197 (ret) = (pcb)->sent((pcb)->callback_arg,(pcb),(space)); \
|
| /components/net/lwip/lwip-1.4.1/test/unit/tcp/ |
| A D | test_tcp.c | 621 u8_t sent; in test_tcp_tx_full_window_lost() local 623 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, 1, 40U); in test_tcp_tx_full_window_lost() 625 EXPECT(sent == expected); in test_tcp_tx_full_window_lost()
|
| /components/net/lwip/lwip-2.0.3/test/unit/tcp/ |
| A D | test_tcp.c | 697 u8_t sent; in test_tcp_tx_full_window_lost() local 699 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, 1, 40U); in test_tcp_tx_full_window_lost() 701 EXPECT(sent == expected); in test_tcp_tx_full_window_lost()
|
| /components/net/lwip/lwip-1.4.1/src/core/ |
| A D | tcp.c | 1406 tcp_sent(struct tcp_pcb *pcb, tcp_sent_fn sent) in tcp_sent() argument 1409 pcb->sent = sent; in tcp_sent()
|
| /components/net/lwip/lwip-2.0.3/src/core/ |
| A D | tcp.c | 1737 tcp_sent(struct tcp_pcb *pcb, tcp_sent_fn sent) in tcp_sent() argument 1741 pcb->sent = sent; in tcp_sent()
|
| /components/net/lwip/lwip-2.1.2/src/apps/altcp_tls/ |
| A D | altcp_tls_mbedtls.c | 507 if ((state->flags & ALTCP_MBEDTLS_FLAGS_APPLDATA_SENT) && conn->sent) { in altcp_mbedtls_lower_sent() 508 return conn->sent(conn->arg, conn, 0); in altcp_mbedtls_lower_sent()
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | rawapi.txt | 184 TCP data is sent by enqueueing the data with a call to 215 err_t (* sent)(void *arg, struct tcp_pcb *tpcb, 497 remain unchanged until sent. Because the send- (or write-)functions return
|
| /components/lwp/terminal/ |
| A D | bsd_porting.h | 687 off_t *sent, int flags, struct rt_thread *td);
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 33 * tcp_close does not fail on memory error (instead, FIN is sent from tcp_tmr) 1197 is aggregated and sent to application 1568 must be sent link-local 2004 * tcp_in.c: Fixed bug #27215: TCP sent() callback gives leading and 2181 sent to mbox 2313 updates are calculated and sent (BUG20515) 2437 host sent a zero mss as TCP option. 3907 * Packets sent from ARP queue had invalid source hardware address. 3980 if an outgoing packet can be directly sent on the link, or perform 3983 The application can safely assume the packet is sent, and the RAM [all …]
|