summaryrefslogtreecommitdiff
path: root/src/libs6dns/s6dns_message_parse_question.c
blob: 170168c75ad21ea3fb35ecc4cdd4d39a541a1629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ISC license. */

#include <errno.h>

#include <skalibs/posixishard.h>
#include <skalibs/uint16.h>

#include <s6-dns/s6dns-constants.h>
#include <s6-dns/s6dns-message.h>

int s6dns_message_parse_question (s6dns_message_counts_t *counts, s6dns_domain_t *name, uint16_t *qtype, char const *packet, unsigned int packetlen, unsigned int *pos)
{
  uint16_t qclass ;
  if (!counts->qd) return (errno = EINVAL, 0) ;
  if (!s6dns_message_get_domain(name, packet, packetlen, pos)) return 0 ;
  if (*pos + 4 > packetlen) return (errno = EPROTO, 0) ;
  uint16_unpack_big(packet + *pos, qtype) ; *pos += 2 ;
  uint16_unpack_big(packet + *pos, &qclass) ; *pos += 2 ;
  if (qclass != S6DNS_C_IN) return (errno = ENOTSUP, 0) ;
  counts->qd-- ;
  return 1 ;
}