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

#include <string.h>
#include <errno.h>
#include <s6-dns/s6dns-domain.h>

unsigned int s6dns_domain_tostring (char *s, size_t max, s6dns_domain_t const *d)
{
  if ((size_t)d->len + 1 > max) return (errno = ENAMETOOLONG, 0) ;
  if (!d->len || (d->s[0] != '.')) return (errno = EINVAL, 0) ;
  if (d->len == 1)
  {
    s[0] = '.' ;
    return 1 ;
  }
  else
  {
    memcpy(s, d->s + 1, d->len - 1) ;
    return d->len - 1 ;
  }
}