OpenDNSSEC-signer  1.4.3
backup.h
Go to the documentation of this file.
1 /*
2  * $Id: tools.c 3817 2010-08-27 08:43:00Z matthijs $
3  *
4  * Copyright (c) 2006-2010 NLNet Labs. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
19  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
21  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
25  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  */
28 
34 #ifndef SIGNER_BACKUP_H
35 #define SIGNER_BACKUP_H
36 
37 #include "config.h"
38 #include "shared/duration.h"
39 #include "shared/file.h"
40 #include "shared/status.h"
41 
42 #include <ldns/ldns.h>
43 
50 char* backup_read_token(FILE* in);
51 
59 int backup_read_check_str(FILE* in, const char* str);
60 
68 int backup_read_str(FILE* in, const char** str);
69 
77 int backup_read_time_t(FILE* in, time_t* v);
78 
86 int backup_read_duration(FILE* in, duration_type** v);
87 
95 int backup_read_rr_type(FILE* in, ldns_rr_type* v);
96 
104 int backup_read_int(FILE* in, int* v);
105 
113 int backup_read_size_t(FILE* in, size_t* v);
114 
122 int backup_read_uint8_t(FILE* in, uint8_t* v);
123 
131 int backup_read_uint16_t(FILE* in, uint16_t* v);
132 
140 int backup_read_uint32_t(FILE* in, uint32_t* v);
141 
149 ods_status backup_read_namedb(FILE* in, void* zone);
150 
158 ods_status backup_read_ixfr(FILE* in, void* zone);
159 
160 #endif /* SIGNER_BACKUP_H */
int backup_read_uint32_t(FILE *in, uint32_t *v)
Definition: backup.c:235
int backup_read_rr_type(FILE *in, ldns_rr_type *v)
Definition: backup.c:150
int backup_read_time_t(FILE *in, time_t *v)
Definition: backup.c:116
enum ods_enum_status ods_status
Definition: status.h:91
int backup_read_check_str(FILE *in, const char *str)
Definition: backup.c:79
int backup_read_uint16_t(FILE *in, uint16_t *v)
Definition: backup.c:218
ods_status backup_read_namedb(FILE *in, void *zone)
Definition: backup.c:330
char * backup_read_token(FILE *in)
Definition: backup.c:55
ods_status backup_read_ixfr(FILE *in, void *zone)
Definition: backup.c:522
int backup_read_uint8_t(FILE *in, uint8_t *v)
Definition: backup.c:201
int backup_read_size_t(FILE *in, size_t *v)
Definition: backup.c:184
int backup_read_str(FILE *in, const char **str)
Definition: backup.c:99
int backup_read_duration(FILE *in, duration_type **v)
Definition: backup.c:133
int backup_read_int(FILE *in, int *v)
Definition: backup.c:167