/btstack/3rd-party/lwip/core/src/api/ |
H A D | api_msg.c | 309 LWIP_ASSERT("recv_tcp: recv for wrong pcb!", conn->pcb.tcp == pcb); 380 if ((conn->pcb.tcp != NULL) && (tcp_sndbuf(conn->pcb.tcp) > TCP_SNDLOWAT) && 381 (tcp_sndqueuelen(conn->pcb.tcp) < TCP_SNDQUEUELOWAT)) { 414 if ((conn->pcb.tcp != NULL) && (tcp_sndbuf(conn->pcb.tcp) > TCP_SNDLOWAT) && 415 (tcp_sndqueuelen(conn->pcb.tcp) < TCP_SNDQUEUELOWAT)) { 445 conn->pcb.tcp = NULL; 518 pcb = conn->pcb.tcp; 570 newconn->pcb.tcp = newpcb; 580 struct tcp_pcb *pcb = newconn->pcb.tcp; 587 newconn->pcb.tcp = NULL; [all …]
|
H A D | sockets.c | 168 …if (((sock)->conn == NULL) || ((sock)->conn->pcb.tcp == NULL)) { done_socket(sock); return EINVAL;… 2903 if ((sock->conn->pcb.tcp != NULL) && (sock->conn->pcb.tcp->state == LISTEN)) { in lwip_getsockopt_impl() 3075 if (sock->conn->pcb.tcp->state == LISTEN) { in lwip_getsockopt_impl() 3081 *(int *)optval = tcp_nagle_disabled(sock->conn->pcb.tcp); in lwip_getsockopt_impl() 3086 *(int *)optval = (int)sock->conn->pcb.tcp->keep_idle; in lwip_getsockopt_impl() 3093 *(int *)optval = (int)(sock->conn->pcb.tcp->keep_idle / 1000); in lwip_getsockopt_impl() 3098 *(int *)optval = (int)(sock->conn->pcb.tcp->keep_intvl / 1000); in lwip_getsockopt_impl() 3103 *(int *)optval = (int)sock->conn->pcb.tcp->keep_cnt; in lwip_getsockopt_impl() 3433 tcp_bind_netif(sock->conn->pcb.tcp, n); in lwip_setsockopt_impl() 3548 if (sock->conn->pcb.tcp->state == LISTEN) { in lwip_setsockopt_impl() [all …]
|
/btstack/3rd-party/lwip/core/ |
H A D | CHANGELOG | 42 * tcp.c: tcp_recved: check for overflow and warn about too big values (patch #9699) 49 * tcp.c: Update prev pointer when skipping entries in tcp_slowtmr (patch #9694) 77 * tcp: add hooks to implement additional socket options 80 * tcp: add hooks to implement tcp md5 signatures or similar (see contrib/addons for an example) 127 * tcp: added support for sending TCP SACKs 139 * tcp: added Appropriate Byte Counting support (task #14128) 180 * tcp: fix RTO timer not working if link is down 225 * tcp: re-work persist timer to fully close window (details in bug #50837) 235 * tcp: add zero-window probe timeout (bug #50837) 281 * tcp: do not keep sending SYNs when getting ACKs [all …]
|
H A D | FEATURES | 10 …nsmit, sending SACKs (since v2.1.0), "altcp": nearly transparent TLS for any tcp pcb (since v2.1.0)
|
H A D | UPGRADING | 181 * Moved stack-internal parts of tcp.h to tcp_impl.h, tcp.h now only contains
|
/btstack/3rd-party/lwip/core/src/core/ |
H A D | tcp_in.c | 135 TCP_STATS_INC(tcp.recv); 148 TCP_STATS_INC(tcp.lenerr); 155 TCP_STATS_INC(tcp.proterr); 168 TCP_STATS_INC(tcp.chkerr); 178 TCP_STATS_INC(tcp.lenerr); 211 TCP_STATS_INC(tcp.lenerr); 241 TCP_STATS_INC(tcp.lenerr); 275 TCP_STATS_INC(tcp.cachehit); 371 TCP_STATS_INC(tcp.cachehit); 432 TCP_STATS_INC(tcp.drop); [all …]
|
H A D | tcp_out.c | 192 TCP_STATS_INC(tcp.err); in tcp_create_segment() 336 TCP_STATS_INC(tcp.memerr); in tcp_write_checks() 798 TCP_STATS_INC(tcp.memerr); in tcp_write() 982 TCP_STATS_INC(tcp.memerr); in tcp_split_unsent_seg() 1078 TCP_STATS_INC(tcp.memerr); in tcp_enqueue_flags() 1087 TCP_STATS_INC(tcp.memerr); in tcp_enqueue_flags() 1604 TCP_STATS_INC(tcp.xmit); in tcp_output_segment() 1950 TCP_STATS_INC(tcp.xmit); in tcp_output_control_segment()
|
/btstack/3rd-party/lwip/core/src/apps/lwiperf/ |
H A D | lwiperf.c | 106 u8_t tcp; member 285 LWIP_ASSERT("conn invalid", (conn != NULL) && conn->base.tcp && (conn->base.server == 0)); in lwiperf_tcp_client_send_more() 410 client_conn->base.tcp = 1; in lwiperf_tx_start_impl() 618 conn->base.tcp = 1; in lwiperf_tcp_accept() 705 s->base.tcp = 1; in lwiperf_start_tcp_server_impl()
|
/btstack/3rd-party/lwip/core/src/include/lwip/ |
H A D | stats.h | 263 struct stats_proto tcp; member 326 #define TCP_STATS_DISPLAY() stats_display_proto(&lwip_stats.tcp, "TCP")
|
H A D | api.h | 226 struct tcp_pcb *tcp; member
|
/btstack/3rd-party/lwip/core/src/netif/ppp/ |
H A D | ipv6cp.c | 1514 u_char *tcp; 1526 tcp = pkt + IP6_HDRLEN; 1527 if ((get_tcpflags(tcp) & TH_FIN) != 0 && len == IP6_HDRLEN + get_tcpoff(tcp) * 4)
|
H A D | ipcp.c | 2397 u_char *tcp; local 2411 tcp = pkt + hlen; 2412 if ((get_tcpflags(tcp) & TH_FIN) != 0 && len == hlen + get_tcpoff(tcp) * 4)
|
/btstack/platform/daemon/src/ |
H A D | socket_connection.c | 597 struct protoent* tcp = getprotobyname("tcp"); in socket_connection_open_tcp() local 599 int btsocket = socket(PF_INET, SOCK_STREAM, tcp->p_proto); in socket_connection_open_tcp()
|
/btstack/test/fuzz/ |
H A D | CMakeLists.txt | 53 ../../3rd-party/lwip/core/src/core/tcp.c
|
/btstack/3rd-party/lwip/core/src/ |
H A D | Filelists.mk | 48 $(LWIPDIR)/core/tcp.c \
|
/btstack/port/max32630-fthr/example/template/ |
H A D | Makefile | 228 LWIP_CORE_SRC = init.c mem.c memp.c netif.c udp.c ip.c pbuf.c inet_chksum.c def.c tcp.c tcp_in.c t…
|
/btstack/port/posix-h4-nxp/ |
H A D | CMakeLists.txt | 71 ${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/libusb/ |
H A D | CMakeLists.txt | 76 ../../3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/libusb-intel/ |
H A D | CMakeLists.txt | 74 ../../3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/posix-h4-bcm/ |
H A D | CMakeLists.txt | 71 ${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/windows-h4/ |
H A D | CMakeLists.txt | 87 ${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/zephyr/ |
H A D | CMakeLists.txt | 73 3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/freebsd-netgraph/ |
H A D | CMakeLists.txt | 86 ${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/qt-usb/ |
H A D | CMakeLists.txt | 89 ${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp.c
|
/btstack/port/qt-h4/ |
H A D | CMakeLists.txt | 98 ${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp.c
|