mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 12:02:10 -05:00
checkpoint
This commit is contained in:
parent
4ae4759f0a
commit
5294500a3d
2 changed files with 4 additions and 5 deletions
|
|
@ -150,11 +150,12 @@ client_recv(isc_task_t *task, isc_event_t *ev)
|
|||
*/
|
||||
client->recvlength = dev->n;
|
||||
client->address = dev->address;
|
||||
isc_event_free(&ev);
|
||||
dev = NULL;
|
||||
|
||||
client_start_recv(cm);
|
||||
|
||||
process_request(client);
|
||||
|
||||
isc_event_free(&ev);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ process_gabn(client_t *client, lwres_buffer_t *b)
|
|||
|
||||
result = lwres_gabnrequest_parse(client->clientmgr->lwctx,
|
||||
b, &client->pkt, &req);
|
||||
if (result != ISC_R_SUCCESS)
|
||||
if (result != LWRES_R_SUCCESS)
|
||||
goto out;
|
||||
|
||||
isc_buffer_init(&namebuf, req->name, req->namelen,
|
||||
|
|
@ -181,8 +181,6 @@ process_gabn(client_t *client, lwres_buffer_t *b)
|
|||
client->find_pending = 0;
|
||||
client->find_wanted = req->addrtypes;
|
||||
|
||||
goto out;
|
||||
|
||||
if ((req->addrtypes & LWRES_ADDRTYPE_V4) != 0) {
|
||||
result = start_v4find(client);
|
||||
if (result != ISC_R_SUCCESS)
|
||||
|
|
|
|||
Loading…
Reference in a new issue