X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Ftincd.c;h=f63540aa9e4ce2fbffca28cfb82dc084eeb2f945;hp=cecf95ed86fb47542e6efdf7d9ab10c857307b31;hb=24874d0806bac5d75663ea9de67a71171bfc97b6;hpb=0f9ad1f047efec53590dc43f07d225e5f20456cb diff --git a/src/tincd.c b/src/tincd.c index cecf95ed..f63540aa 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: tincd.c,v 1.10.4.5 2000/06/29 19:47:04 guus Exp $ + $Id: tincd.c,v 1.10.4.6 2000/06/30 11:45:16 guus Exp $ */ #include "config.h" @@ -374,13 +374,17 @@ main(int argc, char **argv, char **envp) if(security_init()) return 1; - if(setup_network_connections()) - cleanup_and_exit(1); + for(;;) + { + setup_network_connections(); + + main_loop(); - main_loop(); + cleanup_and_exit(1); - cleanup_and_exit(1); - return 1; + syslog(LOG_ERR, _("Unrecoverable error, restarting in %d seconds!"), MAXTIMEOUT); + sleep(MAXTIMEOUT); + } } RETSIGTYPE @@ -433,7 +437,7 @@ RETSIGTYPE sigint_handler(int a) { if(debug_lvl > 0) - syslog(LOG_NOTICE, _("Got INT signal, exitting")); + syslog(LOG_NOTICE, _("Got INT signal, exiting")); cleanup_and_exit(0); }