summaryrefslogtreecommitdiff
path: root/src/skadns/skadns_cancel.c
blob: 2b3753fcddcd6a029875953e7a2ecef2e3f5c703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ISC license. */

#include <skalibs/bsdsnowflake.h>

#include <errno.h>

#include <skalibs/uint16.h>
#include <skalibs/error.h>
#include <skalibs/gensetdyn.h>
#include <skalibs/textclient.h>

#include <s6-dns/skadns.h>

int skadns_cancel (skadns_t *a, uint16_t id, tain const *deadline, tain *stamp)
{
  int e = errno ;
  char pack[3] = "--q" ;
  skadnsanswer_t *p = GENSETDYN_P(skadnsanswer_t, &a->q, id) ;
  if (!error_isagain(p->status)) return skadns_release(a, id) ;
  uint16_pack_big(pack, id) ;
  if (textclient_command(&a->connection, pack, 3, deadline, stamp))
    return gensetdyn_delete(&a->q, id) ;
  if (errno != ENOENT) return 0 ;
  p->status = ECANCELED ;
  errno = e ;
  return 1 ;
}