mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-28 17:37:33 -05:00
ISO C
git-svn-id: file:///svn/unbound/trunk@712 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
280352760c
commit
63aa7463e8
6 changed files with 6 additions and 5 deletions
|
|
@ -1,6 +1,7 @@
|
|||
22 October 2007: Wouter
|
||||
- added donotquerylocalhost config option. Can be turned off for
|
||||
out test cases.
|
||||
- ISO C compat changes.
|
||||
|
||||
19 October 2007: Wouter
|
||||
- added configure (and its files) to svn, so that the trunk is easier
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ regional_alloc(struct regional *r, size_t size)
|
|||
r->total_large += ALIGNMENT+size;
|
||||
*(char**)s = r->large_list;
|
||||
r->large_list = (char*)s;
|
||||
return s+ALIGNMENT;
|
||||
return (char*)s+ALIGNMENT;
|
||||
}
|
||||
/* create a new chunk */
|
||||
if(a > r->available) {
|
||||
|
|
|
|||
|
|
@ -43,10 +43,10 @@
|
|||
|
||||
#ifndef VALIDATOR_VAL_NSEC_H
|
||||
#define VALIDATOR_VAL_NSEC_H
|
||||
#include "util/data/packed_rrset.h"
|
||||
struct val_env;
|
||||
struct module_env;
|
||||
struct ub_packed_rrset_key;
|
||||
enum sec_status;
|
||||
struct reply_info;
|
||||
struct query_info;
|
||||
struct key_entry_key;
|
||||
|
|
|
|||
|
|
@ -67,11 +67,11 @@
|
|||
#ifndef VALIDATOR_VAL_NSEC3_H
|
||||
#define VALIDATOR_VAL_NSEC3_H
|
||||
#include "util/rbtree.h"
|
||||
#include "util/data/packed_rrset.h"
|
||||
struct val_env;
|
||||
struct regional;
|
||||
struct module_env;
|
||||
struct ub_packed_rrset_key;
|
||||
enum sec_status;
|
||||
struct reply_info;
|
||||
struct query_info;
|
||||
struct key_entry_key;
|
||||
|
|
|
|||
|
|
@ -43,10 +43,10 @@
|
|||
|
||||
#ifndef VALIDATOR_VAL_SIGCRYPT_H
|
||||
#define VALIDATOR_VAL_SIGCRYPT_H
|
||||
#include "util/data/packed_rrset.h"
|
||||
struct val_env;
|
||||
struct module_env;
|
||||
struct ub_packed_rrset_key;
|
||||
enum sec_status;
|
||||
struct rbtree_t;
|
||||
struct regional;
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
|
||||
#ifndef VALIDATOR_VAL_UTILS_H
|
||||
#define VALIDATOR_VAL_UTILS_H
|
||||
#include "util/data/packed_rrset.h"
|
||||
struct query_info;
|
||||
struct reply_info;
|
||||
struct val_env;
|
||||
|
|
@ -50,7 +51,6 @@ struct key_entry_key;
|
|||
struct regional;
|
||||
struct val_anchors;
|
||||
struct rrset_cache;
|
||||
enum sec_status;
|
||||
|
||||
/**
|
||||
* Response classifications for the validator. The different types of proofs.
|
||||
|
|
|
|||
Loading…
Reference in a new issue