OpenDNSSEC-signer  1.3.16
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 
41 #include <ldns/ldns.h>
42 
49 char* backup_read_token(FILE* in);
50 
58 int backup_read_check_str(FILE* in, const char* str);
59 
67 int backup_read_str(FILE* in, const char** str);
68 
76 int backup_read_time_t(FILE* in, time_t* v);
77 
85 int backup_read_duration(FILE* in, duration_type** v);
86 
94 int backup_read_rr_type(FILE* in, ldns_rr_type* v);
95 
103 int backup_read_int(FILE* in, int* v);
104 
112 int backup_read_size_t(FILE* in, size_t* v);
113 
121 int backup_read_uint8_t(FILE* in, uint8_t* v);
122 
130 int backup_read_uint16_t(FILE* in, uint16_t* v);
131 
139 int backup_read_uint32_t(FILE* in, uint32_t* v);
140 
141 #endif /* SIGNER_BACKUP_H */
int backup_read_str(FILE *in, const char **str)
Definition: backup.c:94
char * backup_read_token(FILE *in)
Definition: backup.c:50
int backup_read_uint8_t(FILE *in, uint8_t *v)
Definition: backup.c:196
int backup_read_duration(FILE *in, duration_type **v)
Definition: backup.c:128
int backup_read_rr_type(FILE *in, ldns_rr_type *v)
Definition: backup.c:145
int backup_read_uint16_t(FILE *in, uint16_t *v)
Definition: backup.c:213
int backup_read_time_t(FILE *in, time_t *v)
Definition: backup.c:111
int backup_read_int(FILE *in, int *v)
Definition: backup.c:162
int backup_read_size_t(FILE *in, size_t *v)
Definition: backup.c:179
int backup_read_check_str(FILE *in, const char *str)
Definition: backup.c:74
int backup_read_uint32_t(FILE *in, uint32_t *v)
Definition: backup.c:230