X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Ftest_resolver_api.c;h=b897a6c13c4aa6127f6121f80af44f4fc0b83f94;hb=8dfd7bda2f139e2dac27e804167eedc3d227453e;hp=c24646d07d8f1c2b9883f2138fc1c9614ca5602b;hpb=69a23725d6937db68fc8ca2fd1e8490220edc7de;p=oweals%2Fgnunet.git diff --git a/src/util/test_resolver_api.c b/src/util/test_resolver_api.c index c24646d07..b897a6c13 100644 --- a/src/util/test_resolver_api.c +++ b/src/util/test_resolver_api.c @@ -4,7 +4,7 @@ GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published - by the Free Software Foundation; either version 2, or (at your + by the Free Software Foundation; either version 3, or (at your option) any later version. GNUnet is distributed in the hope that it will be useful, but @@ -94,11 +94,9 @@ check_localhost(void *cls, const char *hostname) } else { -#if DEBUG_RESOLVER - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Received invalid hostname `%s'.\n", hostname); -#endif - GNUNET_break(0); + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Received unexpected hostname `%s', expected `localhost' (this could be OK).\n", + hostname); } } @@ -219,7 +217,7 @@ check_rootserver_name(void *cls, const char *hostname) } static void -run(void *cls, struct GNUNET_SCHEDULER_Handle *sched, char * const *args, +run(void *cls, char * const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) { int *ok = cls; @@ -232,13 +230,13 @@ run(void *cls, struct GNUNET_SCHEDULER_Handle *sched, char * const *args, memset(&sa, 0, sizeof(sa)); sa.sin_family = AF_INET; sa.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - GNUNET_RESOLVER_ip_get(sched, cfg, "localhost", AF_INET, timeout, &check_127, + GNUNET_RESOLVER_ip_get(cfg, "localhost", AF_INET, timeout, &check_127, cls); - GNUNET_RESOLVER_hostname_get(sched, cfg, (const struct sockaddr *) &sa, + GNUNET_RESOLVER_hostname_get(cfg, (const struct sockaddr *) &sa, sizeof(struct sockaddr), GNUNET_YES, timeout, &check_localhost, cls); - GNUNET_RESOLVER_hostname_get(sched, cfg, (const struct sockaddr *) &sa, + GNUNET_RESOLVER_hostname_get(cfg, (const struct sockaddr *) &sa, sizeof(struct sockaddr), GNUNET_NO, timeout, &check_localhost_num, cls); - GNUNET_RESOLVER_hostname_resolve(sched, cfg, AF_UNSPEC, timeout, + GNUNET_RESOLVER_hostname_resolve(cfg, AF_UNSPEC, timeout, &check_hostname, cls); @@ -254,7 +252,7 @@ run(void *cls, struct GNUNET_SCHEDULER_Handle *sched, char * const *args, * DNS rootserver to test: a.root-servers.net - 198.41.0.4 */ - char const * rootserver_name = ROOTSERVER_NAME; + const char * rootserver_name = ROOTSERVER_NAME; struct hostent *rootserver; rootserver = gethostbyname(rootserver_name); @@ -297,7 +295,7 @@ run(void *cls, struct GNUNET_SCHEDULER_Handle *sched, char * const *args, #endif /* Resolve the same using GNUNET */ - GNUNET_RESOLVER_ip_get(sched, cfg, ROOTSERVER_NAME, AF_INET, timeout, + GNUNET_RESOLVER_ip_get(cfg, ROOTSERVER_NAME, AF_INET, timeout, &check_rootserver_ip, cls); /* @@ -350,7 +348,7 @@ run(void *cls, struct GNUNET_SCHEDULER_Handle *sched, char * const *args, #else sa.sin_addr.S_un.S_addr = inet_addr(ROOTSERVER_IP); #endif - GNUNET_RESOLVER_hostname_get(sched, cfg, (const struct sockaddr *) &sa, + GNUNET_RESOLVER_hostname_get(cfg, (const struct sockaddr *) &sa, sizeof(struct sockaddr), GNUNET_YES, timeout, &check_rootserver_name, cls); } @@ -360,7 +358,7 @@ check() int ok = 1 + 2 + 4 + 8; char *fn; char *pfx; - pid_t pid; + struct GNUNET_OS_Process *proc; char * const argv[] = { "test-resolver-api", "-c", "test_resolver_api_data.conf", #if VERBOSE @@ -372,20 +370,23 @@ check() pfx = GNUNET_OS_installation_get_path(GNUNET_OS_IPK_BINDIR); GNUNET_asprintf(&fn, "%s%cgnunet-service-resolver", pfx, DIR_SEPARATOR); GNUNET_free(pfx); - pid = GNUNET_OS_start_process(NULL, NULL, fn, "gnunet-service-resolver", + proc = GNUNET_OS_start_process(NULL, NULL, fn, "gnunet-service-resolver", #if VERBOSE "-L", "DEBUG", #endif "-c", "test_resolver_api_data.conf", NULL); + GNUNET_assert (NULL != proc); GNUNET_free(fn); GNUNET_assert(GNUNET_OK == GNUNET_PROGRAM_run((sizeof(argv) / sizeof(char *)) - 1, argv, "test-resolver-api", "nohelp", options, &run, &ok)); - if (0 != PLIBC_KILL(pid, SIGTERM)) + if (0 != GNUNET_OS_process_kill (proc, SIGTERM)) { GNUNET_log_strerror(GNUNET_ERROR_TYPE_WARNING, "kill"); ok = 1; } - GNUNET_OS_process_wait(pid); + GNUNET_OS_process_wait (proc); + GNUNET_OS_process_close (proc); + proc = NULL; if (ok != 0) fprintf(stderr, "Missed some resolutions: %u\n", ok); return ok;