X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconf.c;h=1b3b3a1b234bc5a94085f2839bb5b099d39139ee;hp=951b24a6008c400fa7f1f22ecae8635196507987;hb=bf664c054fdabc30679367a752a27bb769655e4d;hpb=72395f989cb44132d7c756c91b3a6d8ba63517e5 diff --git a/src/conf.c b/src/conf.c index 951b24a6..1b3b3a1b 100644 --- a/src/conf.c +++ b/src/conf.c @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: conf.c,v 1.9.4.48 2001/11/16 00:13:08 zarq Exp $ + $Id: conf.c,v 1.9.4.50 2001/11/16 22:31:15 zarq Exp $ */ #include "config.h" @@ -42,7 +42,6 @@ #include #include "conf.h" -#include "netutl.h" /* for strtoip */ #include "system.h" @@ -205,39 +204,39 @@ cp int get_config_subnet(config_t *cfg, subnet_t **result) { - ip_mask_t *ip; subnet_t *subnet; cp if(!cfg) return 0; - ip = strtoip(cfg->value); +#warning FIXME +/* ip = strtoip(cfg->value); */ - if(!ip) - { - syslog(LOG_ERR, _("IP address expected for configuration variable %s in %s line %d"), - cfg->variable, cfg->file, cfg->line); - return 0; - } +/* if(!ip) */ +/* { */ +/* syslog(LOG_ERR, _("IP address expected for configuration variable %s in %s line %d"), */ +/* cfg->variable, cfg->file, cfg->line); */ +/* return 0; */ +/* } */ /* Teach newbies what subnets are... */ - if((ip->address & ip->mask) != ip->address) - { - syslog(LOG_ERR, _("Network address and subnet mask for configuration variable %s in %s line %d"), - cfg->variable, cfg->file, cfg->line); - free(ip); - return 0; - } - - subnet = new_subnet(); - subnet->type = SUBNET_IPV4; - subnet->net.ipv4.address = ip->address; - subnet->net.ipv4.mask = ip->mask; +/* if((ip->address & ip->mask) != ip->address) */ +/* { */ +/* syslog(LOG_ERR, _("Network address and subnet mask for configuration variable %s in %s line %d"), */ +/* cfg->variable, cfg->file, cfg->line); */ +/* free(ip); */ +/* return 0; */ +/* } */ + +/* subnet = new_subnet(); */ +/* subnet->type = SUBNET_IP; */ +/* subnet->net.ip.address = ip->address; */ +/* subnet->net.ip.mask = ip->mask; */ - free(ip); +/* free(ip); */ - *result = subnet; +/* *result = subnet; */ return 1; }