Lines Matching refs:fd1
309 int fd1, fd2, opt; in test_extra_filter() local
312 fd1 = socket(p.recv_family, p.protocol, 0); in test_extra_filter()
313 if (fd1 < 0) in test_extra_filter()
320 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_extra_filter()
325 attach_ebpf(fd1, 10); in test_extra_filter()
328 if (bind(fd1, addr, sockaddr_size())) in test_extra_filter()
390 int fd1, fd2, opt = 1; in test_filter_without_bind() local
393 fd1 = socket(AF_INET, SOCK_DGRAM, 0); in test_filter_without_bind()
394 if (fd1 < 0) in test_filter_without_bind()
399 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt))) in test_filter_without_bind()
404 attach_ebpf(fd1, 10); in test_filter_without_bind()
407 close(fd1); in test_filter_without_bind()