Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bind9/dns
File: private.h
/*
[0] Fix | Delete
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
[1] Fix | Delete
*
[2] Fix | Delete
* This Source Code Form is subject to the terms of the Mozilla Public
[3] Fix | Delete
* License, v. 2.0. If a copy of the MPL was not distributed with this
[4] Fix | Delete
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
[5] Fix | Delete
*
[6] Fix | Delete
* See the COPYRIGHT file distributed with this work for additional
[7] Fix | Delete
* information regarding copyright ownership.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
#include <stdbool.h>
[11] Fix | Delete
[12] Fix | Delete
#include <isc/lang.h>
[13] Fix | Delete
#include <isc/types.h>
[14] Fix | Delete
[15] Fix | Delete
#include <dns/types.h>
[16] Fix | Delete
#include <dns/db.h>
[17] Fix | Delete
[18] Fix | Delete
#ifndef DNS_PRIVATE_H
[19] Fix | Delete
#define DNS_PRIVATE_H
[20] Fix | Delete
[21] Fix | Delete
ISC_LANG_BEGINDECLS
[22] Fix | Delete
[23] Fix | Delete
isc_result_t
[24] Fix | Delete
dns_private_chains(dns_db_t *db, dns_dbversion_t *ver,
[25] Fix | Delete
dns_rdatatype_t privatetype,
[26] Fix | Delete
bool *build_nsec, bool *build_nsec3);
[27] Fix | Delete
/*%<
[28] Fix | Delete
* Examine the NSEC, NSEC3PARAM and privatetype RRsets at the apex of the
[29] Fix | Delete
* database to determine which of NSEC or NSEC3 chains we are currently
[30] Fix | Delete
* maintaining. In normal operations only one of NSEC or NSEC3 is being
[31] Fix | Delete
* maintained but when we are transitiong between NSEC and NSEC3 we need
[32] Fix | Delete
* to update both sets of chains. If 'privatetype' is zero then the
[33] Fix | Delete
* privatetype RRset will not be examined.
[34] Fix | Delete
*
[35] Fix | Delete
* Requires:
[36] Fix | Delete
* \li 'db' is valid.
[37] Fix | Delete
* \li 'version' is valid or NULL.
[38] Fix | Delete
* \li 'build_nsec' is a pointer to a bool or NULL.
[39] Fix | Delete
* \li 'build_nsec3' is a pointer to a bool or NULL.
[40] Fix | Delete
*
[41] Fix | Delete
* Returns:
[42] Fix | Delete
* \li ISC_R_SUCCESS, 'build_nsec' and 'build_nsec3' will be valid.
[43] Fix | Delete
* \li other on error
[44] Fix | Delete
*/
[45] Fix | Delete
[46] Fix | Delete
isc_result_t
[47] Fix | Delete
dns_private_totext(dns_rdata_t *privaterdata, isc_buffer_t *buffer);
[48] Fix | Delete
/*%<
[49] Fix | Delete
* Convert a private-type RR 'privaterdata' to human-readable form,
[50] Fix | Delete
* and place the result in 'buffer'. The text should indicate
[51] Fix | Delete
* which action the private-type record specifies and whether the
[52] Fix | Delete
* action has been completed.
[53] Fix | Delete
*
[54] Fix | Delete
* Requires:
[55] Fix | Delete
* \li 'privaterdata' is a valid rdata containing at least five bytes
[56] Fix | Delete
* \li 'buffer' is a valid buffer
[57] Fix | Delete
*
[58] Fix | Delete
* Returns:
[59] Fix | Delete
* \li ISC_R_SUCCESS
[60] Fix | Delete
* \li other on error
[61] Fix | Delete
*/
[62] Fix | Delete
[63] Fix | Delete
ISC_LANG_ENDDECLS
[64] Fix | Delete
[65] Fix | Delete
#endif
[66] Fix | Delete
[67] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function