X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fgetaddrinfo.c;h=c400e07d34109edbaa9dedc75c0f8f63cf70bd89;hb=27e19ec3e10643b4b6431ce6a68317f057c932f2;hp=26557d82f09e67af7ceaf0fa1ae3ee6ff744fcaf;hpb=dedbc922fbe49e599466f41c618ba9ba8ddb9477;p=pazpar2-moved-to-github.git diff --git a/src/getaddrinfo.c b/src/getaddrinfo.c index 26557d8..c400e07 100644 --- a/src/getaddrinfo.c +++ b/src/getaddrinfo.c @@ -1,4 +1,4 @@ -/* $Id: getaddrinfo.c,v 1.1 2007-04-21 12:00:54 adam Exp $ +/* $Id: getaddrinfo.c,v 1.5 2007-04-23 21:05:23 adam Exp $ Copyright (c) 2006-2007, Index Data. This file is part of Pazpar2. @@ -39,6 +39,8 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include "pazpar2.h" +#include "connection.h" +#include "host.h" struct work { char *hostport; /* hostport to be resolved in separate thread */ @@ -86,7 +88,7 @@ void perform_getaddrinfo(struct work *w) addrbuf[0], addrbuf[1], addrbuf[2], addrbuf[3], port); freeaddrinfo(addrinfo); w->ipport = xstrdup(ipport); - yaz_log(log_level, "%s -> %s", hostport, ipport); + yaz_log(log_level, "Resolved %s -> %s", hostport, ipport); } xfree(hostport); } @@ -111,11 +113,8 @@ void iochan_handler(struct iochan *i, int event) if (event & EVENT_INPUT) { struct work *w = sel_thread_result(p); - if (w->ipport) - yaz_log(log_level, "resolved result %s", w->ipport); - else - yaz_log(log_level, "unresolved result"); w->host->ipport = w->ipport; + connect_resolver_host(w->host); xfree(w); } } @@ -125,7 +124,9 @@ static sel_thread_t resolver_thread = 0; static void getaddrinfo_start(void) { int fd; - sel_thread_t p = resolver_thread = sel_thread_create(work_handler, &fd); + sel_thread_t p = resolver_thread = + sel_thread_create(work_handler, 0 /* work_destroy */, &fd, + 3 /* no of resolver threads */); if (!p) { yaz_log(YLOG_FATAL|YLOG_ERRNO, "sel_create_create failed"); @@ -144,7 +145,7 @@ static void getaddrinfo_start(void) int host_getaddrinfo(struct host *host) { struct work *w = xmalloc(sizeof(*w)); - int use_thread = 1; + int use_thread = 1; /* =0 to disable threading entirely */ w->hostport = host->hostport; w->ipport = 0;