Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/net/packetdrill/
H A Dtcp_zerocopy_fastopen-client.pkt4 // send data with MSG_FASTOPEN | MSG_ZEROCOPY and verify that the
19 +0 sendto(3, ..., 500, MSG_FASTOPEN|MSG_ZEROCOPY, ..., ...) = -1 EINPROGRESS (Operation now in progress)
40 +0 sendto(5, ..., 500, MSG_FASTOPEN|MSG_ZEROCOPY, ..., ...) = 500
H A Dtcp_zerocopy_fastopen-server.pkt4 // send data with MSG_FASTOPEN | MSG_ZEROCOPY and verify that the
/linux/tools/testing/selftests/net/
H A Dsk_bind_sendto_listen.c37 if (sendto(fd1, NULL, 0, MSG_FASTOPEN, (struct sockaddr *)&bind_addr, in main()
59 if (sendto(fd2, NULL, 0, MSG_FASTOPEN, (struct sockaddr *)&bind_addr, in main()
H A Dtfo.c102 sendto(fd, msg, strlen(msg), MSG_FASTOPEN, (struct sockaddr *)&cfg_addr, sizeof(cfg_addr)); in run_client()
H A Dtcp_fastopen_backup_key.c193 ret = sendto(fd, data, 1, MSG_FASTOPEN, daddr, sz); in connect_and_send()
H A Dreuseport_bpf.c203 if (sendto(fd, buf, len, MSG_FASTOPEN, daddr, sockaddr_size()) < 0) in send_from()
/linux/tools/perf/trace/beauty/
H A Dmsg_flags.c23 #ifndef MSG_FASTOPEN
24 #define MSG_FASTOPEN 0x20000000 macro
/linux/include/linux/
H A Dsocket.h348 #define MSG_FASTOPEN 0x20000000 /* Send data in TCP SYN */
333 #define MSG_FASTOPEN global() macro
/linux/tools/perf/trace/beauty/include/linux/
H A Dsocket.h348 #define MSG_FASTOPEN 0x20000000 /* Send data in TCP SYN */ macro
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dselect_reuseport.c378 err = sendto(fd, data, len, MSG_FASTOPEN, (struct sockaddr *)&srv_sa, in send_data()
/linux/tools/testing/selftests/bpf/
H A Dnetwork_helpers.c252 ret = sendto(fd, data, data_len, MSG_FASTOPEN, (struct sockaddr *)&addr, in fastopen_connect()
/linux/tools/testing/selftests/net/mptcp/
H A Dmptcp_connect.c401 syn_copied = sendto(sock, winfo->buf, winfo->len, MSG_FASTOPEN, in sock_connect_mptcp()
/linux/net/mptcp/
H A Dprotocol.c1771 if (msg->msg_flags & MSG_FASTOPEN) { in mptcp_sendmsg_fastopen()
1874 msg->msg_flags &= MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | MSG_FASTOPEN; in mptcp_sendmsg()
1881 msg->msg_flags & MSG_FASTOPEN)) { in mptcp_sendmsg()
/linux/net/ipv4/
H A Dtcp.c1139 if (unlikely(flags & MSG_FASTOPEN || in tcp_sendmsg_locked()