fixed a bug of not handling the default dns server value properly

This commit is contained in:
hyung-hwan 2014-09-11 10:16:24 +00:00
parent 97c528ca1f
commit a55e3b0238
2 changed files with 21 additions and 18 deletions

View File

@ -806,6 +806,7 @@ static int dns_send (qse_httpd_t* httpd, qse_httpd_dns_t* dns, const qse_mchar_t
qse_size_t name_len; qse_size_t name_len;
dns_ans_t* ans; dns_ans_t* ans;
qse_tmr_event_t tmout_event; qse_tmr_event_t tmout_event;
int dns_flags;
httpd_xtn = qse_httpd_getxtn (httpd); httpd_xtn = qse_httpd_getxtn (httpd);
@ -857,25 +858,9 @@ printf ("DNS REALLY SENING>>>>>>>>>>>>>>>>>>>>>>>\n");
req->resol = resol; req->resol = resol;
req->ctx = ctx; req->ctx = ctx;
if (dns_server->flags & QSE_HTTPD_DNS_SERVER_A)
req->qalen = init_dns_query (req->qa, QSE_SIZEOF(req->qa), name, DNS_QTYPE_A, req->seqa);
else
req->flags |= DNS_REQ_A_NX;
if (dns_server->flags & QSE_HTTPD_DNS_SERVER_AAAA)
req->qaaaalen = init_dns_query (req->qaaaa, QSE_SIZEOF(req->qaaaa), name, DNS_QTYPE_AAAA, req->seqaaaa);
else
req->flags |= DNS_REQ_AAAA_NX;
if (req->qalen <= -1 || req->qaaaalen <= -1)
{
qse_httpd_seterrnum (httpd, QSE_HTTPD_EINVAL);
goto oops;
}
req->dns_retries = httpd_xtn->dns.retries; req->dns_retries = httpd_xtn->dns.retries;
req->dns_tmout = httpd_xtn->dns.tmout; req->dns_tmout = httpd_xtn->dns.tmout;
dns_flags = QSE_HTTPD_DNS_SERVER_A | QSE_HTTPD_DNS_SERVER_AAAA;
if (dns_server) if (dns_server)
{ {
@ -889,6 +874,8 @@ printf ("DNS REALLY SENING>>>>>>>>>>>>>>>>>>>>>>>\n");
req->dns_socket = dns->handle[0].i; req->dns_socket = dns->handle[0].i;
else else
req->dns_socket = dns->handle[1].i; req->dns_socket = dns->handle[1].i;
dns_flags = dns_server->flags;
} }
else else
{ {
@ -898,6 +885,22 @@ printf ("DNS REALLY SENING>>>>>>>>>>>>>>>>>>>>>>>\n");
req->dns_socket = dc->dns_socket; req->dns_socket = dc->dns_socket;
} }
if (dns_flags & QSE_HTTPD_DNS_SERVER_A)
req->qalen = init_dns_query (req->qa, QSE_SIZEOF(req->qa), name, DNS_QTYPE_A, req->seqa);
else
req->flags |= DNS_REQ_A_NX;
if (dns_flags & QSE_HTTPD_DNS_SERVER_AAAA)
req->qaaaalen = init_dns_query (req->qaaaa, QSE_SIZEOF(req->qaaaa), name, DNS_QTYPE_AAAA, req->seqaaaa);
else
req->flags |= DNS_REQ_AAAA_NX;
if (req->qalen <= -1 || req->qaaaalen <= -1)
{
qse_httpd_seterrnum (httpd, QSE_HTTPD_EINVAL);
goto oops;
}
qse_gettime (&tmout_event.when); qse_gettime (&tmout_event.when);
qse_addtime (&tmout_event.when, &req->dns_tmout, &tmout_event.when); qse_addtime (&tmout_event.when, &req->dns_tmout, &tmout_event.when);
tmout_event.ctx = req; tmout_event.ctx = req;

View File

@ -420,7 +420,7 @@ printf ("... URS_SEND.....................\n");
if (dc->skadlen >= 0) if (dc->skadlen >= 0)
{ {
/* the default url rewrite server address set in urs_open /* the default url rewrite server address set in urs_open
* is valid. */ * is valid. */
req->urs_skad = dc->skad; req->urs_skad = dc->skad;
req->urs_skadlen = dc->skadlen; req->urs_skadlen = dc->skadlen;
req->urs_socket = dc->urs_socket; req->urs_socket = dc->urs_socket;