This commit fixes several compiler warnings like the following (now that -Wall is the default): config_init.h:68: warning: ‘cmd_opts’ defined but not used
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/*
|
|
******************************************************************************
|
|
*
|
|
* File: config_init.h
|
|
*
|
|
* Author: Damien Stuart
|
|
*
|
|
* Purpose: Header file for fwknopd config_init.
|
|
*
|
|
* Copyright 2010 Damien Stuart (dstuart@dstuart.org)
|
|
*
|
|
* License (GNU Public License):
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
#ifndef CONFIG_INIT_H
|
|
#define CONFIG_INIT_H
|
|
|
|
#include <getopt.h>
|
|
#include <sys/stat.h>
|
|
|
|
/* Function Prototypes
|
|
*/
|
|
void config_init(fko_srv_options_t *opts, int argc, char **argv);
|
|
void dump_config(fko_srv_options_t *opts);
|
|
void clear_configs(fko_srv_options_t *opts);
|
|
void free_configs(fko_srv_options_t *opts);
|
|
void usage(void);
|
|
|
|
#endif /* CONFIG_INIT_H */
|
|
|
|
/***EOF***/
|