summaryrefslogtreecommitdiff
path: root/src/libs6dns/s6dns_fmt_hinfo.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2014-12-10 03:05:47 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2014-12-10 03:05:47 +0000
commit416ef5e2bf59bb2e45066a1d5d91ac677c0f48e5 (patch)
tree1c746d673dcec7a8488c6ac51db8245411034376 /src/libs6dns/s6dns_fmt_hinfo.c
downloads6-dns-416ef5e2bf59bb2e45066a1d5d91ac677c0f48e5.tar.xz
Initial commit
Diffstat (limited to 'src/libs6dns/s6dns_fmt_hinfo.c')
-rw-r--r--src/libs6dns/s6dns_fmt_hinfo.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libs6dns/s6dns_fmt_hinfo.c b/src/libs6dns/s6dns_fmt_hinfo.c
new file mode 100644
index 0000000..8c1d7c4
--- /dev/null
+++ b/src/libs6dns/s6dns_fmt_hinfo.c
@@ -0,0 +1,15 @@
+/* ISC license. */
+
+#include <errno.h>
+#include <skalibs/bytestr.h>
+#include <s6-dns/s6dns-message.h>
+#include <s6-dns/s6dns-fmt.h>
+
+unsigned int s6dns_fmt_hinfo (char *s, unsigned int max, s6dns_message_rr_hinfo_t const *hinfo)
+{
+ if ((unsigned int)hinfo->cpu.len + 1 + (unsigned int)hinfo->os.len > max) return (errno = ENAMETOOLONG, 0) ;
+ byte_copy(s, hinfo->cpu.len, hinfo->cpu.s) ;
+ s[hinfo->cpu.len] = ' ' ;
+ byte_copy(s + hinfo->cpu.len + 1, hinfo->os.len, hinfo->os.s) ;
+ return hinfo->cpu.len + 1 + hinfo->os.len ;
+}