test_getaddrinfo.c: add check for service argument

pull/274/head
rofl0r 2018-12-02 13:45:35 +00:00
parent 416d481ac9
commit bd7e8a1da1
1 changed files with 9 additions and 2 deletions

View File

@ -8,13 +8,13 @@
#define NI_MAXHOST 1025
#endif
int main(void) {
static int doit(const char* host, const char* service) {
struct addrinfo *result;
struct addrinfo *res;
int error;
/* resolve the domain name into a list of addresses */
error = getaddrinfo("www.example.com", NULL, NULL, &result);
error = getaddrinfo(host, service, NULL, &result);
if (error != 0)
{
fprintf(stderr, "error in getaddrinfo: %s\n", gai_strerror(error));
@ -39,3 +39,10 @@ int main(void) {
freeaddrinfo(result);
return EXIT_SUCCESS;
}
int main(void) {
int ret;
ret = doit("www.example.com", NULL);
ret = doit("www.example.com", "80");
return ret;
}