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

Annotation of src/external/mpl/bind/dist/lib/dns/rdata/generic/spf_99.h, Revision 1.1.1.1

1.1       christos    1: /*     $NetBSD$        */
                      2:
                      3: /*
                      4:  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
                      5:  *
                      6:  * This Source Code Form is subject to the terms of the Mozilla Public
                      7:  * License, v. 2.0. If a copy of the MPL was not distributed with this
                      8:  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
                      9:  *
                     10:  * See the COPYRIGHT file distributed with this work for additional
                     11:  * information regarding copyright ownership.
                     12:  */
                     13:
                     14: #ifndef GENERIC_SPF_99_H
                     15: #define GENERIC_SPF_99_H 1
                     16:
                     17:
                     18: typedef struct dns_rdata_spf_string {
                     19:                isc_uint8_t    length;
                     20:                unsigned char   *data;
                     21: } dns_rdata_spf_string_t;
                     22:
                     23: typedef struct dns_rdata_spf {
                     24:        dns_rdatacommon_t       common;
                     25:        isc_mem_t               *mctx;
                     26:        unsigned char           *txt;
                     27:        isc_uint16_t            txt_len;
                     28:        /* private */
                     29:        isc_uint16_t            offset;
                     30: } dns_rdata_spf_t;
                     31:
                     32: /*
                     33:  * ISC_LANG_BEGINDECLS and ISC_LANG_ENDDECLS are already done
                     34:  * via rdatastructpre.h and rdatastructsuf.h.
                     35:  */
                     36: #endif /* GENERIC_SPF_99_H */

CVSweb <webmaster@jp.NetBSD.org>