diff options
author | sandmann <sandmann> | 2004-07-11 21:50:51 +0000 |
---|---|---|
committer | sandmann <sandmann> | 2004-07-11 21:50:51 +0000 |
commit | bf426687bbded794a682f660c9754796282c0566 (patch) | |
tree | fbef2c51fff8ccfdbd347d40267a9b4e131fc07b /tests | |
parent | d3c68076e8d6a878902c8f8c12aa9e320307abad (diff) |
some fixes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lacwget.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/lacwget.c b/tests/lacwget.c index f1eabbf..c7245ef 100644 --- a/tests/lacwget.c +++ b/tests/lacwget.c @@ -450,8 +450,11 @@ http_callback (LacHttpRequest *request, const LacHttpEvent *event) switch (event->type) { case LAC_HTTP_EVENT_HOST_FOUND: - g_print ("%s: dns lookup complete at %f\n", page_info->main_uri, - g_timer_elapsed (total, NULL)); + g_print ("%s: dns lookup complete at %f (%s: %s)\n", + page_info->main_uri, + g_timer_elapsed (total, NULL), + event->host_found.hostname, + lac_address_to_string (event->host_found.address)); break; case LAC_HTTP_EVENT_SENT: |