3 * OLSR ad-hoc routing table management protocol
4 * Copyright (C) 2004 Andreas Tønnesen (andreto@ifi.uio.no)
6 * This file is part of the olsr.org OLSR daemon.
8 * olsr.org is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * olsr.org is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with olsr.org; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <arpa/inet.h>
30 #define OLSRD_CONF_FILE_NAME "olsrd.conf"
31 #define OLSRD_GLOBAL_CONF_FILE "/etc/" OLSRD_CONF_FILE_NAME
32 #define CONFIG_MAX_LINESIZE FILENAME_MAX + 100
34 #define MAX_KEYWORDS 4
37 extern int nonwlan_multiplier;
41 char ipv6_mult_site[50]; /* IPv6 multicast group site-local */
42 char ipv6_mult_global[50]; /* IPv6 multicast group global */
45 read_config_file(char *);
47 /* So we don't have to include main.h */