[BACK]Return to txt_16.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / mpl / bind / dist / lib / dns / rdata / generic

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/external/mpl/bind/dist/lib/dns/rdata/generic/txt_16.c between version 1.1.1.5 and 1.1.1.6

version 1.1.1.5, 2021/02/19 16:37:15 version 1.1.1.6, 2021/08/19 11:45:26
Line 90  static inline isc_result_t
Line 90  static inline isc_result_t
 fromtext_txt(ARGS_FROMTEXT) {  fromtext_txt(ARGS_FROMTEXT) {
         REQUIRE(type == dns_rdatatype_txt);          REQUIRE(type == dns_rdatatype_txt);
   
         return (generic_fromtext_txt(rdclass, type, lexer, origin, options,          return (generic_fromtext_txt(CALL_FROMTEXT));
                                      target, callbacks));  
 }  }
   
 static inline isc_result_t  static inline isc_result_t
 totext_txt(ARGS_TOTEXT) {  totext_txt(ARGS_TOTEXT) {
           REQUIRE(rdata != NULL);
         REQUIRE(rdata->type == dns_rdatatype_txt);          REQUIRE(rdata->type == dns_rdatatype_txt);
   
         return (generic_totext_txt(rdata, tctx, target));          return (generic_totext_txt(CALL_TOTEXT));
 }  }
   
 static inline isc_result_t  static inline isc_result_t
 fromwire_txt(ARGS_FROMWIRE) {  fromwire_txt(ARGS_FROMWIRE) {
         REQUIRE(type == dns_rdatatype_txt);          REQUIRE(type == dns_rdatatype_txt);
   
         return (generic_fromwire_txt(rdclass, type, source, dctx, options,          return (generic_fromwire_txt(CALL_FROMWIRE));
                                      target));  
 }  }
   
 static inline isc_result_t  static inline isc_result_t
Line 202  static inline isc_result_t
Line 201  static inline isc_result_t
 fromstruct_txt(ARGS_FROMSTRUCT) {  fromstruct_txt(ARGS_FROMSTRUCT) {
         REQUIRE(type == dns_rdatatype_txt);          REQUIRE(type == dns_rdatatype_txt);
   
         return (generic_fromstruct_txt(rdclass, type, source, target));          return (generic_fromstruct_txt(CALL_FROMSTRUCT));
 }  }
   
 static inline isc_result_t  static inline isc_result_t
Line 216  tostruct_txt(ARGS_TOSTRUCT) {
Line 215  tostruct_txt(ARGS_TOSTRUCT) {
         txt->common.rdtype = rdata->type;          txt->common.rdtype = rdata->type;
         ISC_LINK_INIT(&txt->common, link);          ISC_LINK_INIT(&txt->common, link);
   
         return (generic_tostruct_txt(rdata, target, mctx));          return (generic_tostruct_txt(CALL_TOSTRUCT));
 }  }
   
 static inline void  static inline void

Legend:
Removed from v.1.1.1.5  
changed lines
  Added in v.1.1.1.6

CVSweb <webmaster@jp.NetBSD.org>