20 #define LDNS_PARSE_SKIP_SPACE "\f\n\r\v"
21 #define LDNS_PARSE_NORMAL " \f\n\r\t\v"
22 #define LDNS_PARSE_NO_NL " \t"
23 #define LDNS_MAX_LINELEN 10230
24 #define LDNS_MAX_KEYWORDLEN 32
57 ssize_t
ldns_fget_token(FILE *f,
char *token,
const char *delim,
size_t limit);
70 ssize_t
ldns_fget_token_l(FILE *f,
char *token,
const char *delim,
size_t limit,
int *line_nr);
121 ssize_t
ldns_fget_keyword_data(FILE *f,
const char *keyword,
const char *k_del,
char *data,
const char *d_del,
size_t data_limit);
136 ssize_t
ldns_fget_keyword_data_l(FILE *f,
const char *keyword,
const char *k_del,
char *data,
const char *d_del,
size_t data_limit,
int *line_nr);
This file contains the definition of ldns_buffer, and functions to manipulate those.
Common definitions for LDNS.
enum ldns_enum_status ldns_status
ssize_t ldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, int *line_nr)
returns a token/char from the stream F.
ssize_t ldns_fget_keyword_data(FILE *f, const char *keyword, const char *k_del, char *data, const char *d_del, size_t data_limit)
enum ldns_enum_directive ldns_directive
ssize_t ldns_bget_keyword_data(ldns_buffer *b, const char *keyword, const char *k_del, char *data, const char *d_del, size_t data_limit)
ssize_t ldns_fget_token(FILE *f, char *token, const char *delim, size_t limit)
returns a token/char from the stream F.
ldns_status ldns_fget_token_l_st(FILE *f, char **token, size_t *limit, bool fixed, const char *delim, int *line_nr)
returns a token/char from the stream f.
void ldns_fskipcs(FILE *fp, const char *s)
skips all of the characters in the given string in the fp, moving the position to the first character...
ldns_enum_directive
different type of directives in zone files We now deal with $TTL, $ORIGIN and $INCLUDE.
void ldns_bskipcs(ldns_buffer *buffer, const char *s)
skips all of the characters in the given string in the buffer, moving the position to the first chara...
void ldns_fskipcs_l(FILE *fp, const char *s, int *line_nr)
skips all of the characters in the given string in the fp, moving the position to the first character...
ssize_t ldns_fget_keyword_data_l(FILE *f, const char *keyword, const char *k_del, char *data, const char *d_del, size_t data_limit, int *line_nr)
ssize_t ldns_bget_token(ldns_buffer *b, char *token, const char *delim, size_t limit)
returns a token/char from the buffer b.
int ldns_bgetc(ldns_buffer *buffer)
returns the next character from a buffer.
implementation of buffers to ease operations