Home | History | Annotate | Download | only in unit

Lines Matching defs:address

28 /* retrieves ip address and port from a sockaddr structure.
65 /* host:port:address[,address]... */
73 const char *address[10];
86 /* CURLOPT_RESOLVE address parsing tests */
127 int addressnum = sizeof(tests[i].address) / sizeof(*tests[i].address);
160 if(!addr && !tests[i].address[j])
163 if(tests[i].address[j] == &skip)
174 if(addr && !tests[i].address[j]) {
176 "is %s but tests[%d].address[%d] is NULL.\n",
182 if(!addr && tests[i].address[j]) {
184 "is NULL but tests[%d].address[%d] is %s.\n",
185 __FILE__, __LINE__, i, i, j, tests[i].address[j]);
190 if(!curl_strequal(ipaddress, tests[i].address[j])) {
192 "%s is not equal to tests[%d].address[%d] %s.\n",
193 __FILE__, __LINE__, i, ipaddress, i, j, tests[i].address[j]);
200 "for tests[%d].address[%d] is %ld but tests[%d].port is %d.\n",
208 "for tests[%d].address[%d\n",