blob: e2b639fa9fe3be6099a442f8e9bd9b0ef89bb50a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* 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_domain_t *name, uint16_t *qtype, char const *packet, unsigned int packetlen, unsigned int *pos)
{
uint16_t qclass ;
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) ;
return 1 ;
}
|