1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2025-01-06 21:02:55 +08:00

test_getaddrinfo.c: add check for service argument

This commit is contained in:
rofl0r 2018-12-02 13:45:35 +00:00
parent 416d481ac9
commit bd7e8a1da1

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;
}