Lines Matching refs:fd1
311 int fd1, fd2, opt; in test_extra_filter() local
314 fd1 = socket(p.recv_family, p.protocol, 0); in test_extra_filter()
315 if (fd1 < 0) in test_extra_filter()
322 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_extra_filter()
327 attach_ebpf(fd1, 10); in test_extra_filter()
330 if (bind(fd1, addr, sockaddr_size())) in test_extra_filter()
392 int fd1, fd2, opt = 1; in test_filter_without_bind() local
395 fd1 = socket(AF_INET, SOCK_DGRAM, 0); in test_filter_without_bind()
396 if (fd1 < 0) in test_filter_without_bind()
401 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_filter_without_bind()
406 attach_ebpf(fd1, 10); in test_filter_without_bind()
409 close(fd1); in test_filter_without_bind()