Lines Matching refs:ip
35 const char *ip; member
112 .ip = "127.0.0.1",
126 .ip = "127.0.0.1",
180 .ip = "0.0.0.0",
193 .ip = "::",
222 .ip = "::1",
252 .ip = "127.0.0.1",
282 .ip = "127.0.0.1",
313 .ip = "127.0.0.1",
344 .ip = "::1",
359 .ip = "0.0.0.0",
372 .ip = "::",
413 static int bind_sock(int domain, int type, const char *ip, in bind_sock() argument
434 if (inet_pton(domain, ip, (void *)&addr4->sin_addr) != 1) in bind_sock()
441 if (inet_pton(domain, ip, (void *)&addr6->sin6_addr) != 1) in bind_sock()
502 res = bind_sock(test->domain, test->type, test->ip, test->port, in run_test_case()