15185a700Sflorian /*
25185a700Sflorian * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
35185a700Sflorian *
45185a700Sflorian * Permission to use, copy, modify, and/or distribute this software for any
55185a700Sflorian * purpose with or without fee is hereby granted, provided that the above
65185a700Sflorian * copyright notice and this permission notice appear in all copies.
75185a700Sflorian *
85185a700Sflorian * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
95185a700Sflorian * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
105185a700Sflorian * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
115185a700Sflorian * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
125185a700Sflorian * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
135185a700Sflorian * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
145185a700Sflorian * PERFORMANCE OF THIS SOFTWARE.
155185a700Sflorian */
165185a700Sflorian
17*1fb015a8Sflorian /* $Id: x25_19.c,v 1.12 2020/09/14 08:40:43 florian Exp $ */
185185a700Sflorian
195185a700Sflorian /* Reviewed: Thu Mar 16 16:15:57 PST 2000 by bwelling */
205185a700Sflorian
215185a700Sflorian /* RFC1183 */
225185a700Sflorian
235185a700Sflorian #ifndef RDATA_GENERIC_X25_19_C
245185a700Sflorian #define RDATA_GENERIC_X25_19_C
255185a700Sflorian
265185a700Sflorian static inline isc_result_t
totext_x25(ARGS_TOTEXT)275185a700Sflorian totext_x25(ARGS_TOTEXT) {
285185a700Sflorian isc_region_t region;
295185a700Sflorian
305185a700Sflorian UNUSED(tctx);
315185a700Sflorian
325185a700Sflorian REQUIRE(rdata->type == dns_rdatatype_x25);
335185a700Sflorian REQUIRE(rdata->length != 0);
345185a700Sflorian
355185a700Sflorian dns_rdata_toregion(rdata, ®ion);
36*1fb015a8Sflorian return (txt_totext(®ion, 1, target));
375185a700Sflorian }
385185a700Sflorian
395185a700Sflorian static inline isc_result_t
fromwire_x25(ARGS_FROMWIRE)405185a700Sflorian fromwire_x25(ARGS_FROMWIRE) {
415185a700Sflorian isc_region_t sr;
425185a700Sflorian
435185a700Sflorian REQUIRE(type == dns_rdatatype_x25);
445185a700Sflorian
455185a700Sflorian UNUSED(type);
465185a700Sflorian UNUSED(dctx);
475185a700Sflorian UNUSED(rdclass);
485185a700Sflorian UNUSED(options);
495185a700Sflorian
505185a700Sflorian isc_buffer_activeregion(source, &sr);
515185a700Sflorian if (sr.length < 5)
525185a700Sflorian return (DNS_R_FORMERR);
535185a700Sflorian return (txt_fromwire(source, target));
545185a700Sflorian }
555185a700Sflorian
565185a700Sflorian static inline isc_result_t
towire_x25(ARGS_TOWIRE)575185a700Sflorian towire_x25(ARGS_TOWIRE) {
585185a700Sflorian UNUSED(cctx);
595185a700Sflorian
605185a700Sflorian REQUIRE(rdata->type == dns_rdatatype_x25);
615185a700Sflorian REQUIRE(rdata->length != 0);
625185a700Sflorian
63637d8eb6Sflorian return (isc_mem_tobuffer(target, rdata->data, rdata->length));
645185a700Sflorian }
655185a700Sflorian
665185a700Sflorian #endif /* RDATA_GENERIC_X25_19_C */
67