static struct GNUNET_ARM_Handle *arm;
+static const char hostname[] = "www.gnu.org"; /* any domain should do */
+
static void
trigger_disconnect (void *cls)
if (NULL == addr)
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
- "Failed to resolve our own hostname!\n");
+ "Failed to resolve hostname!\n");
GNUNET_break (0);
ret = 3;
GNUNET_ARM_request_service_stop (arm,
GNUNET_break (status == GNUNET_ARM_REQUEST_SENT_OK);
GNUNET_break (result == GNUNET_ARM_RESULT_STARTING);
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Trying to resolve our own hostname!\n");
+ "Trying to resolve a hostname via the resolver service!\n");
/* connect to the resolver service */
if (NULL ==
- GNUNET_RESOLVER_hostname_resolve (AF_UNSPEC,
- TIMEOUT,
- &hostname_resolve_cb,
- NULL))
+ GNUNET_RESOLVER_ip_get (hostname,
+ AF_UNSPEC,
+ TIMEOUT,
+ &hostname_resolve_cb,
+ NULL))
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Unable initiate connection to resolver service\n");
static struct GNUNET_GETOPT_CommandLineOption options[] = {
GNUNET_GETOPT_OPTION_END
};
- char hostname[GNUNET_OS_get_hostname_max_length () + 1];
- if (0 != gethostname (hostname, sizeof (hostname) - 1))
- {
- GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
- "gethostname");
- FPRINTF (stderr,
- "%s",
- "Failed to determine my own hostname, testcase not run.\n");
- return 77;
- }
- if ( (0 == strcmp (hostname,
- "localhost")) ||
- (0 == strcmp (hostname,
- "ipv6-localnet")) )
- {
- /* we cannot use 'localhost' as this would not trigger the
- resolver service (see resolver_api.c); so in this case,
- we fall back to (ab)using gnu.org. */
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Falling back to `www.gnu.org'\n");
- strcpy (hostname,
- "www.gnu.org");
- }
/* trigger DNS lookup */
#if HAVE_GETADDRINFO
{
if (0 != (ret = getaddrinfo (hostname, NULL, NULL, &ai)))
{
FPRINTF (stderr,
- "Failed to resolve my hostname `%s', testcase not run.\n",
+ "Failed to resolve `%s', testcase not run.\n",
hostname);
return 77;
}
if (NULL == host)
{
FPRINTF (stderr,
- "Failed to resolve my hostname `%s', testcase not run.\n",
+ "Failed to resolve `%s', testcase not run.\n",
hostname);
return 77;
}
if (NULL == host)
{
FPRINTF (stderr,
- "Failed to resolve my hostname `%s', testcase not run.\n",
+ "Failed to resolve `%s', testcase not run.\n",
hostname);
return 77;
}