#ifndef RDATA_GENERIC_IPSECKEY_45_C
#define RDATA_GENERIC_IPSECKEY_45_C
#include <string.h>
static inline isc_result_t
totext_ipseckey(ARGS_TOTEXT) {
isc_region_t region;
dns_name_t name;
char buf[sizeof("255 ")];
unsigned short num;
unsigned short gateway;
REQUIRE(rdata->type == dns_rdatatype_ipseckey);
REQUIRE(rdata->length >= 3);
dns_name_init(&name, NULL);
if (rdata->data[1] > 3U)
return (ISC_R_NOTIMPLEMENTED);
if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
RETERR(isc_str_tobuffer("( ", target));
dns_rdata_toregion(rdata, ®ion);
num = uint8_fromregion(®ion);
isc_region_consume(®ion, 1);
snprintf(buf, sizeof(buf), "%u ", num);
RETERR(isc_str_tobuffer(buf, target));
gateway = uint8_fromregion(®ion);
isc_region_consume(®ion, 1);
snprintf(buf, sizeof(buf), "%u ", gateway);
RETERR(isc_str_tobuffer(buf, target));
num = uint8_fromregion(®ion);
isc_region_consume(®ion, 1);
snprintf(buf, sizeof(buf), "%u ", num);
RETERR(isc_str_tobuffer(buf, target));
switch (gateway) {
case 0:
RETERR(isc_str_tobuffer(".", target));
break;
case 1:
RETERR(inet_totext(AF_INET, ®ion, target));
isc_region_consume(®ion, 4);
break;
case 2:
RETERR(inet_totext(AF_INET6, ®ion, target));
isc_region_consume(®ion, 16);
break;
case 3:
dns_name_fromregion(&name, ®ion);
RETERR(dns_name_totext(&name, 0, target));
isc_region_consume(®ion, name_length(&name));
break;
}
if (region.length > 0U) {
RETERR(isc_str_tobuffer(tctx->linebreak, target));
if (tctx->width == 0)
RETERR(isc_base64_totext(®ion, 60, "", target));
else
RETERR(isc_base64_totext(®ion, tctx->width - 2,
tctx->linebreak, target));
}
if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
RETERR(isc_str_tobuffer(" )", target));
return (ISC_R_SUCCESS);
}
static inline isc_result_t
fromwire_ipseckey(ARGS_FROMWIRE) {
dns_name_t name;
isc_region_t region;
REQUIRE(type == dns_rdatatype_ipseckey);
UNUSED(type);
UNUSED(rdclass);
dns_decompress_setmethods(dctx, DNS_COMPRESS_NONE);
dns_name_init(&name, NULL);
isc_buffer_activeregion(source, ®ion);
if (region.length < 3)
return (ISC_R_UNEXPECTEDEND);
switch (region.base[1]) {
case 0:
isc_buffer_forward(source, region.length);
return (isc_mem_tobuffer(target, region.base, region.length));
case 1:
if (region.length < 7)
return (ISC_R_UNEXPECTEDEND);
isc_buffer_forward(source, region.length);
return (isc_mem_tobuffer(target, region.base, region.length));
case 2:
if (region.length < 19)
return (ISC_R_UNEXPECTEDEND);
isc_buffer_forward(source, region.length);
return (isc_mem_tobuffer(target, region.base, region.length));
case 3:
RETERR(isc_mem_tobuffer(target, region.base, 3));
isc_buffer_forward(source, 3);
RETERR(dns_name_fromwire(&name, source, dctx, options, target));
isc_buffer_activeregion(source, ®ion);
isc_buffer_forward(source, region.length);
return(isc_mem_tobuffer(target, region.base, region.length));
default:
return (ISC_R_NOTIMPLEMENTED);
}
}
static inline isc_result_t
towire_ipseckey(ARGS_TOWIRE) {
isc_region_t region;
REQUIRE(rdata->type == dns_rdatatype_ipseckey);
REQUIRE(rdata->length != 0);
UNUSED(cctx);
dns_rdata_toregion(rdata, ®ion);
return (isc_mem_tobuffer(target, region.base, region.length));
}
#endif