Lines Matching refs:fd2
309 int fd1, fd2, opt; in test_extra_filter() local
315 fd2 = socket(p.recv_family, p.protocol, 0); in test_extra_filter()
316 if (fd2 < 0) in test_extra_filter()
322 if (setsockopt(fd2, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_extra_filter()
326 attach_ebpf(fd2, 10); in test_extra_filter()
331 if (!bind(fd2, addr, sockaddr_size()) || errno != EADDRINUSE) in test_extra_filter()
390 int fd1, fd2, opt = 1; in test_filter_without_bind() local
396 fd2 = socket(AF_INET, SOCK_DGRAM, 0); in test_filter_without_bind()
397 if (fd2 < 0) in test_filter_without_bind()
401 if (setsockopt(fd2, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_filter_without_bind()
405 attach_cbpf(fd2, 10); in test_filter_without_bind()
408 close(fd2); in test_filter_without_bind()