Home
last modified time | relevance | path

Searched refs:connect_fd_to_fd (Results 1 – 6 of 6) sorted by relevance

/linux/tools/testing/selftests/bpf/prog_tests/
H A Dcgroup_skb_sk_lookup.c27 err = connect_fd_to_fd(out_sk, serv_sk, 1000); in run_lookup_test()
28 if (CHECK(!err || errno != EINPROGRESS, "connect_fd_to_fd", in run_lookup_test()
H A Dcgroup_tcp_skb.c89 err = connect_fd_to_fd(*client_fd, *listen_fd, 0); in talk_to_cgroup()
90 if (!ASSERT_OK(err, "connect_fd_to_fd")) in talk_to_cgroup()
139 err = connect_fd_to_fd(*client_fd, *listen_fd, 0); in talk_to_outside()
140 if (!ASSERT_OK(err, "connect_fd_to_fd")) in talk_to_outside()
H A Dbpf_nf.c42 if (!ASSERT_EQ(connect_fd_to_fd(fd, srv_fd, TIMEOUT_MS), 0, "connect_fd_to_fd")) { in connect_to_server()
H A Dsk_lookup.c580 err = connect_fd_to_fd(reuse_conn_fd, reuse_conn_fd, 0); in run_lookup_prog()
581 if (!ASSERT_OK(err, "connect_fd_to_fd")) in run_lookup_prog()
/linux/tools/testing/selftests/bpf/
H A Dnetwork_helpers.h80 int connect_fd_to_fd(int client_fd, int server_fd, int timeout_ms);
H A Dnetwork_helpers.c368 int connect_fd_to_fd(int client_fd, int server_fd, int timeout_ms) in connect_fd_to_fd() function