-/* $OpenBSD: resolver.c,v 1.3 2018/11/11 14:56:05 eric Exp $ */
+/* $OpenBSD: resolver.c,v 1.4 2018/11/12 12:31:49 eric Exp $ */
/*
* Copyright (c) 2017-2018 Eric Faurot <eric@openbsd.org>
m_create(proc, IMSG_GETNAMEINFO, reqid, 0, -1);
m_add_int(proc, EAI_SYSTEM);
m_add_int(proc, save_errno);
+ m_add_string(proc, NULL);
+ m_add_string(proc, NULL);
m_close(proc);
break;
case IMSG_GETNAMEINFO:
m_get_int(&m, &gai_errno);
m_get_int(&m, &errno);
- if (gai_errno == 0) {
- m_get_string(&m, &host);
- m_get_string(&m, &serv);
- }
+ m_get_string(&m, &host);
+ m_get_string(&m, &serv);
m_end(&m);
SPLAY_REMOVE(reqtree, &reqs, req);
- req->cb_ni(req->arg, gai_errno, gai_errno ? NULL : host,
- gai_errno ? NULL : serv);
+ req->cb_ni(req->arg, gai_errno, host, serv);
free(req);
break;
}
m_create(s->proc, IMSG_GETNAMEINFO, s->reqid, 0, -1);
m_add_int(s->proc, ar->ar_gai_errno);
m_add_int(s->proc, ar->ar_errno);
- if (ar->ar_gai_errno == 0) {
- m_add_string(s->proc, s->host);
- m_add_string(s->proc, s->serv);
- }
+ m_add_string(s->proc, ar->ar_gai_errno ? NULL : s->host);
+ m_add_string(s->proc, ar->ar_gai_errno ? NULL : s->serv);
m_close(s->proc);
free(s->host);