2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

apply the modified style

This commit is contained in:
Evan Hunt
2020-02-13 14:44:37 -08:00
parent 0255a97473
commit e851ed0bb5
669 changed files with 35995 additions and 42219 deletions

View File

@@ -24,11 +24,10 @@
#include <dst/dst.h>
uint16_t
dst_region_computeid(const isc_region_t *source)
{
uint32_t ac;
dst_region_computeid(const isc_region_t *source) {
uint32_t ac;
const unsigned char *p;
int size;
int size;
REQUIRE(source != NULL);
REQUIRE(source->length >= 4);
@@ -49,11 +48,10 @@ dst_region_computeid(const isc_region_t *source)
}
uint16_t
dst_region_computerid(const isc_region_t *source)
{
uint32_t ac;
dst_region_computerid(const isc_region_t *source) {
uint32_t ac;
const unsigned char *p;
int size;
int size;
REQUIRE(source != NULL);
REQUIRE(source->length >= 4);
@@ -76,64 +74,55 @@ dst_region_computerid(const isc_region_t *source)
}
dns_name_t *
dst_key_name(const dst_key_t *key)
{
dst_key_name(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_name);
}
unsigned int
dst_key_size(const dst_key_t *key)
{
dst_key_size(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_size);
}
unsigned int
dst_key_proto(const dst_key_t *key)
{
dst_key_proto(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_proto);
}
unsigned int
dst_key_alg(const dst_key_t *key)
{
dst_key_alg(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_alg);
}
uint32_t
dst_key_flags(const dst_key_t *key)
{
dst_key_flags(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_flags);
}
dns_keytag_t
dst_key_id(const dst_key_t *key)
{
dst_key_id(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_id);
}
dns_keytag_t
dst_key_rid(const dst_key_t *key)
{
dst_key_rid(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_rid);
}
dns_rdataclass_t
dst_key_class(const dst_key_t *key)
{
dst_key_class(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_class);
}
bool
dst_key_iszonekey(const dst_key_t *key)
{
dst_key_iszonekey(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
if ((key->key_flags & DNS_KEYTYPE_NOAUTH) != 0) {
@@ -150,8 +139,7 @@ dst_key_iszonekey(const dst_key_t *key)
}
bool
dst_key_isnullkey(const dst_key_t *key)
{
dst_key_isnullkey(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
if ((key->key_flags & DNS_KEYFLAG_TYPEMASK) != DNS_KEYTYPE_NOKEY) {
@@ -168,8 +156,7 @@ dst_key_isnullkey(const dst_key_t *key)
}
void
dst_key_setbits(dst_key_t *key, uint16_t bits)
{
dst_key_setbits(dst_key_t *key, uint16_t bits) {
unsigned int maxbits;
REQUIRE(VALID_KEY(key));
if (bits != 0) {
@@ -181,22 +168,19 @@ dst_key_setbits(dst_key_t *key, uint16_t bits)
}
uint16_t
dst_key_getbits(const dst_key_t *key)
{
dst_key_getbits(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_bits);
}
void
dst_key_setttl(dst_key_t *key, dns_ttl_t ttl)
{
dst_key_setttl(dst_key_t *key, dns_ttl_t ttl) {
REQUIRE(VALID_KEY(key));
key->key_ttl = ttl;
}
dns_ttl_t
dst_key_getttl(const dst_key_t *key)
{
dst_key_getttl(const dst_key_t *key) {
REQUIRE(VALID_KEY(key));
return (key->key_ttl);
}