/* This file is part of ac. libcapwap 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 3 of the License, or (at your option) any later version. libcapwap 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 Foobar. If not, see . */ #ifndef __CONF_H #define __CONF_H #include #include #include #include #include #include #include "capwap.h" #ifndef CONF_DEFAULT_ACNAME #define CONF_DEFAULT_ACNAME "AC" #endif #ifndef CONF_DEFAULT_MAXWTPS #define CONF_DEFAULT_MAXWTPS 200 #endif #ifndef CONF_DEFAULT_LOGFILENAME #define CONF_DEFAULT_LOGFILENAME NULL #endif #ifndef CONF_DEFAULT_CONFIGFILENAME #define CONF_DEFAULT_CONFIGFILENAME "ac.conf" #endif #ifndef CONF_DEFAULT_VENDOR_ID #define CONF_DEFAULT_VENDOR_ID 11591 /* Free Software Foundation */ #endif #ifndef CONF_DEFAULT_SOFTWARE_VERSION #define CONF_DEFAULT_SOFTWARE_VERSION "AC-Tube 0.01" #endif #ifndef CONF_DEFAULT_HARDWARE_VERSION #define CONF_DEFAULT_HARDWARE_VERSION "Linux/X86" #endif #ifndef CONF_DEFAULT_CONTROL_PORT #define CONF_DEFAULT_CONTROL_PORT CAPWAP_CONTROL_PORT #endif extern char * conf_acname; extern char * conf_acid; extern int conf_acname_len; extern long conf_max_wtps; extern char * conf_logfilename; extern struct sockaddr_storage * conf_salist; extern int conf_salist_len; extern long conf_vendor_id; extern char * conf_hardware_version; extern char * conf_software_version; extern char ** conf_listen_addrs; extern int conf_listen_addrs_len; extern struct sockaddr * conf_ac_ips; extern int conf_ac_ips_len; extern int read_config(const char * filename); extern cfg_bool_t conf_ignore_wtp_source_port; extern char * conf_control_port; extern char * conf_dtls_psk; extern char ** conf_mcast_groups; extern int conf_mcast_groups_len; extern char ** conf_bcast_addrs; extern int conf_bcast_addrs_len; extern long conf_debug_level; #endif