Home
last modified time | relevance | path

Searched refs:tcp (Results 1 – 14 of 14) sorted by relevance

/lib/liblwip/src/api/
Dapi_msg.c225 LWIP_ASSERT("recv_tcp: recv for wrong pcb!", conn->pcb.tcp == pcb);
295 if ((conn->pcb.tcp != NULL) && (tcp_sndbuf(conn->pcb.tcp) > TCP_SNDLOWAT) &&
296 (tcp_sndqueuelen(conn->pcb.tcp) < TCP_SNDQUEUELOWAT)) {
329 if ((conn->pcb.tcp != NULL) && (tcp_sndbuf(conn->pcb.tcp) > TCP_SNDLOWAT) &&
330 (tcp_sndqueuelen(conn->pcb.tcp) < TCP_SNDQUEUELOWAT)) {
356 conn->pcb.tcp = NULL;
417 pcb = conn->pcb.tcp;
450 newconn->pcb.tcp = newpcb;
460 struct tcp_pcb* pcb = newconn->pcb.tcp;
467 newconn->pcb.tcp = NULL;
[all …]
Dsockets.c1802 *(int*)optval = tcp_nagle_disabled(sock->conn->pcb.tcp);
1807 *(int*)optval = (int)sock->conn->pcb.tcp->keep_idle;
1814 *(int*)optval = (int)(sock->conn->pcb.tcp->keep_idle/1000);
1819 *(int*)optval = (int)(sock->conn->pcb.tcp->keep_intvl/1000);
1824 *(int*)optval = (int)sock->conn->pcb.tcp->keep_cnt;
2207 tcp_nagle_disable(sock->conn->pcb.tcp);
2209 tcp_nagle_enable(sock->conn->pcb.tcp);
2215 sock->conn->pcb.tcp->keep_idle = (u32_t)(*(int*)optval);
2217 s, sock->conn->pcb.tcp->keep_idle));
2222 sock->conn->pcb.tcp->keep_idle = 1000*(u32_t)(*(int*)optval);
[all …]
Dapi_lib.c79 LWIP_ASSERT("freeing conn without freeing pcb", conn->pcb.tcp == NULL); in netconn_new_with_proto_and_callback()
/lib/liblwip/
DCHANGELOG31 * opt.h, tcp.c, tcp_in.c: Implemented limiting data on ooseq queue (task #9989)
48 * opt.h, tcp_impl.h, tcp.c, udp.h/.c: Added a config option to randomize
69 * tcp.c, tcp_out.c: bug #33604: added some more asserts to check that
132 * tcp.h, tcp_in.c, tcp_out.c: partly fixed bug #25882: TCP hangs on
136 * tcp.c: fixed bug #35435: No pcb state check before adding it to time-wait
140 * tcp.c, tcp_in.c: fixed bug #35305: pcb may be freed too early on shutdown(WR)
143 * tcp.c: fixed bug #34636: FIN_WAIT_2 - Incorrect shutdown of TCP pcb
152 * tcp.h/.c, tcp_impl.h, tcp_in.c: fixed bug #31177: tcp timers can corrupt
227 * pbuf.h, tcp.c, tcp_in.c: fixed bug #33871: rejecting TCP_EVENT_RECV() for
299 * tcp.c: fixed bug #31723 (tcp_kill_prio() kills pcbs with the same prio) by
[all …]
DSConscript37 "src/core/tcp.c",
DUPGRADING47 * Moved stack-internal parts of tcp.h to tcp_impl.h, tcp.h now only contains
/lib/liblwip/src/core/
Dtcp_out.c187 TCP_STATS_INC(tcp.err); in tcp_create_segment()
323 TCP_STATS_INC(tcp.memerr); in tcp_write_checks()
695 TCP_STATS_INC(tcp.memerr); in tcp_write()
738 TCP_STATS_INC(tcp.memerr); in tcp_enqueue_flags()
759 TCP_STATS_INC(tcp.memerr); in tcp_enqueue_flags()
766 TCP_STATS_INC(tcp.memerr); in tcp_enqueue_flags()
775 TCP_STATS_INC(tcp.memerr); in tcp_enqueue_flags()
1163 TCP_STATS_INC(tcp.xmit); in tcp_output_segment()
1223 TCP_STATS_INC(tcp.xmit); in tcp_rst()
1388 TCP_STATS_INC(tcp.xmit); in tcp_keepalive()
[all …]
Dtcp_in.c105 TCP_STATS_INC(tcp.recv); in tcp_input()
119 TCP_STATS_INC(tcp.lenerr); in tcp_input()
126 TCP_STATS_INC(tcp.proterr); in tcp_input()
140 TCP_STATS_INC(tcp.chkerr); in tcp_input()
151 TCP_STATS_INC(tcp.lenerr); in tcp_input()
298 TCP_STATS_INC(tcp.drop); in tcp_input()
409 TCP_STATS_INC(tcp.proterr); in tcp_input()
410 TCP_STATS_INC(tcp.drop); in tcp_input()
422 TCP_STATS_INC(tcp.drop); in tcp_input()
472 TCP_STATS_INC(tcp.memerr); in tcp_listen_input()
/lib/liblwip/src/include/lwip/
Dstats.h136 struct stats_proto tcp; member
169 #define TCP_STATS_DISPLAY() stats_display_proto(&lwip_stats.tcp, "TCP")
Dapi.h142 struct tcp_pcb *tcp; member
/lib/liblwip/src/netif/ppp/
Dipcp.c1385 u_char *tcp; in ip_active_pkt() local
1403 tcp = pkt + hlen; in ip_active_pkt()
1404 if ((get_tcpflags(tcp) & TH_FIN) != 0 && len == hlen + get_tcpoff(tcp) * 4) { in ip_active_pkt()
/lib/liblwip/doc/
Dsnmp_agent.txt25 When builing lwIP without TCP, the mib-2.tcp group is omitted.
Drawapi.txt312 called every TCP_FAST_INTERVAL milliseconds (defined in tcp.h) and
/lib/liblwip/src/core/snmp/
Dmib2.c298 const struct mib_array_node tcp = { variable
703 (struct mib_node*)&tcp,