OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rcv_fds
(Results
1 - 1
of
1
) sorted by null
/external/linux-kselftest/tools/testing/selftests/net/
reuseport_dualstack.c
31
static void build_rcv_fd(int family, int proto, int *
rcv_fds
, int count)
56
rcv_fds
[i] = socket(family, proto, 0);
57
if (
rcv_fds
[i] < 0)
61
if (setsockopt(
rcv_fds
[i], SOL_SOCKET, SO_REUSEPORT, &opt,
65
if (bind(
rcv_fds
[i], (struct sockaddr *)&addr, sizeof(addr)))
68
if (proto == SOCK_STREAM && listen(
rcv_fds
[i], 10))
128
static void test(int *
rcv_fds
, int count, int proto)
141
ev.data.fd =
rcv_fds
[i];
142
if (epoll_ctl(epfd, EPOLL_CTL_ADD,
rcv_fds
[i], &ev))
160
int
rcv_fds
[32], i
local
[
all
...]
Completed in 87 milliseconds