Lines Matching refs:family
30 static void build_rcv_group(int *rcv_fd, size_t len, int family, int proto) in build_rcv_group() argument
38 switch (family) { in build_rcv_group()
52 error(1, 0, "Unsupported family %d", family); in build_rcv_group()
56 rcv_fd[i] = socket(family, proto, 0); in build_rcv_group()
107 static void send_from_node(int node_id, int family, int proto) in send_from_node() argument
114 switch (family) { in send_from_node()
138 error(1, 0, "Unsupported family %d", family); in send_from_node()
144 fd = socket(family, proto, 0); in send_from_node()
194 static void test(int *rcv_fd, int len, int family, int proto) in test() argument
199 build_rcv_group(rcv_fd, len, family, proto); in test()
214 send_from_node(node, family, proto); in test()
220 send_from_node(node, family, proto); in test()