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.1 2000/06/17 20:55:54 zarq Exp $
+ $Id: conf.c,v 1.9.4.2 2000/06/27 15:08:57 guus Exp $
*/
/* Not found */
return NULL;
}
+
+/*
+ Support for multiple config lines.
+ Index is used to get a specific value, 0 being the first, 1 the second etc.
+*/
+const config_t *
+get_next_config_val(which_t type, int index)
+{
+ config_t *p;
+
+ for(p = config; p != NULL; p = p->next)
+ if(p->which == type)
+ if(--index < 0)
+ return p;
+
+ /* Not found */
+ return NULL;
+}
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: conf.h,v 1.6.4.1 2000/06/17 20:55:54 zarq Exp $
+ $Id: conf.h,v 1.6.4.2 2000/06/27 15:08:57 guus Exp $
*/
#ifndef __TINC_CONF_H__
extern config_t *add_config_val(config_t **, int, char *);
extern int read_config_file(const char *);
extern const config_t *get_config_val(which_t type);
+extern const config_t *get_next_config_val(which_t type, int);
#endif /* __TINC_CONF_H__ */
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: net.c,v 1.35.4.8 2000/06/26 20:30:20 guus Exp $
+ $Id: net.c,v 1.35.4.9 2000/06/27 15:08:58 guus Exp $
*/
#include "config.h"
if(setup_outgoing_meta_socket(ncn) < 0)
{
- syslog(LOG_ERR, _("Could not set up a meta connection!"));
+ syslog(LOG_ERR, _("Could not set up a meta connection to %s"),
+ ncn->hostname);
free_conn_element(ncn);
return -1;
}
myself->port = cfg->data.val;
if(cfg = get_config_val(indirectdata))
- if(cfg->data.val)
+ if(cfg->data.val == stupid_true)
myself->flags |= EXPORTINDIRECTDATA;
if((myself->meta_socket = setup_listen_meta_socket(myself->port)) < 0)
sigalrm_handler(int a)
{
config_t const *cfg;
+ int index = 1;
cp
cfg = get_config_val(upstreamip);
- if(!setup_outgoing_connection(cfg->data.ip->ip))
+ while(cfg)
{
- signal(SIGALRM, SIG_IGN);
- }
- else
- {
- signal(SIGALRM, sigalrm_handler);
- seconds_till_retry += 5;
- if(seconds_till_retry>300) /* Don't wait more than 5 minutes. */
- seconds_till_retry = 300;
- alarm(seconds_till_retry);
- syslog(LOG_ERR, _("Still failed to connect to other, will retry in %d seconds"),
- seconds_till_retry);
+ if(!setup_outgoing_connection(cfg->data.ip->ip)) /* function returns 0 when there are no problems */
+ {
+ signal(SIGALRM, SIG_IGN);
+ return;
+ }
+ cfg = get_next_config_val(upstreamip, index++); /* Or else we try the next ConnectTo line */
}
+
+ signal(SIGALRM, sigalrm_handler);
+ seconds_till_retry += 5;
+ if(seconds_till_retry>300) /* Don't wait more than 5 minutes. */
+ seconds_till_retry = 300;
+ alarm(seconds_till_retry);
+ syslog(LOG_ERR, _("Still failed to connect to other, will retry in %d seconds"),
+ seconds_till_retry);
cp
}
int setup_network_connections(void)
{
config_t const *cfg;
+ int index = 1;
cp
if((cfg = get_config_val(pingtimeout)) == NULL)
timeout = 5;
/* No upstream IP given, we're listen only. */
return 0;
- if(setup_outgoing_connection(cfg->data.ip->ip))
+ while(cfg)
{
- signal(SIGALRM, sigalrm_handler);
- seconds_till_retry = 300;
- alarm(seconds_till_retry);
- syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in 5 minutes"));
+ if(!setup_outgoing_connection(cfg->data.ip->ip)) /* function returns 0 when there are no problems */
+ return 0;
+ cfg = get_next_config_val(upstreamip, index++); /* Or else we try the next ConnectTo line */
}
+
+ signal(SIGALRM, sigalrm_handler);
+ seconds_till_retry = 300;
+ alarm(seconds_till_retry);
+ syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in 5 minutes"));
cp
return 0;
}