37 lines
1.4 KiB
C
37 lines
1.4 KiB
C
|
/*
|
||
|
* resolv_conf_parser.h
|
||
|
* This file is part of NetworkInador
|
||
|
*
|
||
|
* Copyright (C) 2023 - Félix Arreola Rodríguez
|
||
|
*
|
||
|
* NetworkInador is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* NetworkInador is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with NetworkInador; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||
|
* Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#ifndef __RESOLV_CONF_PARSER_H__
|
||
|
#define __RESOLV_CONF_PARSER_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "flist.h"
|
||
|
|
||
|
int resolv_conf_parse_line (const char *line, int *ns_family, struct_addr *nameserver, char *value, const size_t value_size);
|
||
|
FList * resolv_parser_search_entry (FList *all_entries, const int resolv_type, const int ns_family, const struct_addr *nameserver, const char *value, int skip_on_file);
|
||
|
FList * resolv_parser_parse_local_file (FList *all_entries, FILE *fd, int origin);
|
||
|
|
||
|
#endif /* __RESOLV_CONF_PARSER_H__ */
|
||
|
|