/openbmc/linux/tools/testing/selftests/net/ |
H A D | reuseport_dualstack.c | 164 build_rcv_fd(AF_INET, SOCK_DGRAM, rcv_fds, 5); in main() 165 build_rcv_fd(AF_INET6, SOCK_DGRAM, &(rcv_fds[5]), 5); in main() 166 test(rcv_fds, 10, SOCK_DGRAM); in main() 171 build_rcv_fd(AF_INET6, SOCK_DGRAM, rcv_fds, 5); in main() 172 build_rcv_fd(AF_INET, SOCK_DGRAM, &(rcv_fds[5]), 5); in main() 173 test(rcv_fds, 10, SOCK_DGRAM); in main() 181 build_rcv_fd(AF_INET, SOCK_DGRAM, rcv_fds, 16); in main() 183 test(rcv_fds, 32, SOCK_DGRAM); in main() 188 build_rcv_fd(AF_INET6, SOCK_DGRAM, rcv_fds, 16); in main() 189 build_rcv_fd(AF_INET, SOCK_DGRAM, &(rcv_fds[16]), 16); in main() [all …]
|
H A D | reuseport_bpf.c | 467 .protocol = SOCK_DGRAM, in main() 474 .protocol = SOCK_DGRAM, in main() 481 .protocol = SOCK_DGRAM, in main() 488 .protocol = SOCK_DGRAM, in main() 494 .protocol = SOCK_DGRAM, in main() 498 .protocol = SOCK_DGRAM, in main() 505 .protocol = SOCK_DGRAM, in main() 512 .protocol = SOCK_DGRAM, in main() 519 .protocol = SOCK_DGRAM, in main() 526 .protocol = SOCK_DGRAM, in main() [all …]
|
H A D | socket.c | 31 { AF_INET, SOCK_DGRAM, IPPROTO_TCP, -EPROTONOSUPPORT, 1 }, 32 { AF_INET, SOCK_DGRAM, IPPROTO_UDP, 0, 1 },
|
H A D | psock_lib.h | 81 fds[0] = socket(PF_INET, SOCK_DGRAM, 0); in pair_udp_open() 82 fds[1] = socket(PF_INET, SOCK_DGRAM, 0); in pair_udp_open()
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | test_sock_addr.c | 156 SOCK_DGRAM, 212 SOCK_DGRAM, 270 SOCK_DGRAM, 326 SOCK_DGRAM, 342 SOCK_DGRAM, 356 SOCK_DGRAM, 370 SOCK_DGRAM, 384 SOCK_DGRAM, 398 SOCK_DGRAM, 412 SOCK_DGRAM, [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | udp_limit.c | 32 fd1 = socket(AF_INET, SOCK_DGRAM, 0); in test_udp_limit() 36 fd2 = socket(AF_INET, SOCK_DGRAM, 0); in test_udp_limit() 44 fd1 = socket(AF_INET, SOCK_DGRAM, 0); in test_udp_limit()
|
H A D | sk_lookup.c | 757 .sotype = SOCK_DGRAM, in test_redirect_lookup() 765 .sotype = SOCK_DGRAM, in test_redirect_lookup() 774 .sotype = SOCK_DGRAM, in test_redirect_lookup() 784 .sotype = SOCK_DGRAM, in test_redirect_lookup() 795 .sotype = SOCK_DGRAM, in test_redirect_lookup() 804 .sotype = SOCK_DGRAM, in test_redirect_lookup() 812 .sotype = SOCK_DGRAM, in test_redirect_lookup() 820 .sotype = SOCK_DGRAM, in test_redirect_lookup() 829 .sotype = SOCK_DGRAM, in test_redirect_lookup() 839 .sotype = SOCK_DGRAM, in test_redirect_lookup() [all …]
|
H A D | connect_force_port.c | 153 server_fd = start_server(AF_INET, SOCK_DGRAM, NULL, 60123, 0); in test_connect_force_port() 156 CHECK_FAIL(run_test(cgroup_fd, server_fd, AF_INET, SOCK_DGRAM)); in test_connect_force_port() 159 server_fd = start_server(AF_INET6, SOCK_DGRAM, NULL, 60124, 0); in test_connect_force_port() 162 CHECK_FAIL(run_test(cgroup_fd, server_fd, AF_INET6, SOCK_DGRAM)); in test_connect_force_port()
|
H A D | sk_assign.c | 201 else if (type == SOCK_DGRAM && in run_test() 276 TEST("ipv4 udp port redir", AF_INET, SOCK_DGRAM, false), in test_sk_assign() 277 TEST("ipv4 udp addr redir", AF_INET, SOCK_DGRAM, true), in test_sk_assign() 278 TEST("ipv6 udp port redir", AF_INET6, SOCK_DGRAM, false), in test_sk_assign() 279 TEST("ipv6 udp addr redir", AF_INET6, SOCK_DGRAM, true), in test_sk_assign()
|
H A D | sockmap_listen.c | 1086 if (sotype == SOCK_DGRAM) { in test_reuseport_select_connected() 1153 if (sotype == SOCK_DGRAM) { in test_reuseport_mixed_groups() 1241 case SOCK_DGRAM: in sotype_str() 1673 err = inet_socketpair(family, SOCK_DGRAM, &p0, &c0); in udp_redir_to_connected() 1676 err = inet_socketpair(family, SOCK_DGRAM, &p1, &c1); in udp_redir_to_connected() 1764 err = inet_socketpair(family, SOCK_DGRAM, &p1, &c1); in inet_unix_redir_to_connected() 1840 err = inet_socketpair(family, SOCK_DGRAM, &p0, &c0); in unix_inet_redir_to_connected() 1926 test_ops(skel, map, family, SOCK_DGRAM); in run_tests() 1929 test_reuseport(skel, map, family, SOCK_DGRAM); in run_tests() 1947 test_unix_redir(skel, skel->maps.sock_map, SOCK_DGRAM); in serial_test_sockmap_listen() [all …]
|
H A D | sock_destroy.c | 117 serv = start_server(AF_INET6, SOCK_DGRAM, NULL, 0, 0); in test_udp_client() 153 listen_fds = start_reuseport_server(AF_INET6, SOCK_DGRAM, in test_udp_server()
|
/openbmc/linux/tools/testing/selftests/net/af_unix/ |
H A D | unix_connect.c | 68 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD() 77 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD() 86 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD() 95 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD()
|
H A D | scm_pidfd.c | 246 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD() 252 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD() 311 if (variant->type == SOCK_DGRAM) { in client() 345 if (variant->type == SOCK_DGRAM) in client() 417 if (variant->type == SOCK_DGRAM) { in TEST_F()
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | udp_limit.c | 21 if (ctx->type != SOCK_DGRAM) in sock() 49 if (ctx->type != SOCK_DGRAM) in sock_release()
|
H A D | recvmsg4_prog.c | 28 if (ctx->type != SOCK_STREAM && ctx->type != SOCK_DGRAM) in recvmsg4_prog()
|
H A D | sendmsg4_prog.c | 24 if (ctx->type != SOCK_DGRAM) in sendmsg_v4_prog()
|
H A D | recvmsg6_prog.c | 31 if (ctx->type != SOCK_STREAM && ctx->type != SOCK_DGRAM) in recvmsg6_prog()
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pyruvate/ |
H A D | 0001-musl-Define-SOCK_SEQPACKET-in-common-place.patch | 27 pub const SOCK_DGRAM: ::c_int = 2; 37 pub const SOCK_DGRAM: ::c_int = 2; 47 pub const SOCK_DGRAM: ::c_int = 1; 57 pub const SOCK_DGRAM: ::c_int = 2; 67 pub const SOCK_DGRAM: ::c_int = 2;
|
/openbmc/linux/samples/bpf/ |
H A D | sock_flags.bpf.c | 22 sk->type == SOCK_DGRAM && in bpf_prog1() 40 sk->type == SOCK_DGRAM && in bpf_prog2()
|
/openbmc/linux/net/rxrpc/ |
H A D | utils.c | 22 srx->transport_type = SOCK_DGRAM; in rxrpc_extract_addr_from_skb() 31 srx->transport_type = SOCK_DGRAM; in rxrpc_extract_addr_from_skb()
|
/openbmc/slpd-lite/test/ |
H A D | test-suite.py | 7 from socket import AF_INET, SOCK_DGRAM 9 sock = socket.socket(AF_INET, SOCK_DGRAM)
|
/openbmc/linux/security/tomoyo/ |
H A D | network.c | 35 [SOCK_DGRAM] = "dgram", 147 [SOCK_DGRAM] = { 170 [SOCK_DGRAM] = { 697 case SOCK_DGRAM: in tomoyo_socket_connect_permission() 734 case SOCK_DGRAM: in tomoyo_socket_bind_permission() 766 (type != SOCK_DGRAM && type != SOCK_RAW)) in tomoyo_socket_sendmsg_permission()
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | socket.h | 30 SOCK_DGRAM = 1, enumerator
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | network.py | 10 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM if not udp else socket.SOCK_DGRAM)
|
/openbmc/linux/net/unix/ |
H A D | unix_bpf.c | 44 if (sk->sk_type == SOCK_DGRAM) in __unix_recvmsg() 149 if (sk->sk_type != SOCK_DGRAM) in unix_dgram_bpf_update_proto()
|