Lines Matching defs:address
47 /* host:port:address[,address]... */
58 const char *address[10];
71 /* CURLOPT_RESOLVE address parsing tests */
119 int addressnum = sizeof(tests[i].address) / sizeof(*tests[i].address);
153 if(!addr && !tests[i].address[j])
156 if(tests[i].address[j] == &skip)
167 if(addr && !tests[i].address[j]) {
169 "is %s but tests[%d].address[%d] is NULL.\n",
175 if(!addr && tests[i].address[j]) {
177 "is NULL but tests[%d].address[%d] is %s.\n",
178 __FILE__, __LINE__, i, i, j, tests[i].address[j]);
183 if(!curl_strequal(ipaddress, tests[i].address[j])) {
185 "%s is not equal to tests[%d].address[%d] %s.\n",
186 __FILE__, __LINE__, i, ipaddress, i, j, tests[i].address[j]);
193 "for tests[%d].address[%d] is %d but tests[%d].port is %d.\n",