Clean up last part of main().
This commit is contained in:
parent
e20ac7b52d
commit
a65011b3c5
1 changed files with 18 additions and 16 deletions
34
src/tincd.c
34
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.81 2003/08/02 21:33:52 guus Exp $
|
||||
$Id: tincd.c,v 1.10.4.82 2003/08/03 09:08:52 guus Exp $
|
||||
*/
|
||||
|
||||
#include "system.h"
|
||||
|
@ -452,11 +452,26 @@ int main2(int argc, char **argv)
|
|||
if(!detach())
|
||||
return 1;
|
||||
|
||||
for(;;) {
|
||||
if(setup_network_connections()) {
|
||||
|
||||
/* Setup sockets and open device. If it doesn't work, don't give up but try again. */
|
||||
|
||||
while(!setup_network_connections()) {
|
||||
if(do_detach) {
|
||||
logger(LOG_NOTICE, _("Restarting in %d seconds!"), maxtimeout);
|
||||
sleep(maxtimeout);
|
||||
} else {
|
||||
logger(LOG_ERR, _("Not restarting."));
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Start main loop. It only exits when tinc is killed. */
|
||||
|
||||
int status;
|
||||
status = main_loop();
|
||||
|
||||
/* Shutdown properly. */
|
||||
|
||||
close_network_connections();
|
||||
|
||||
ifdebug(CONNECTIONS)
|
||||
|
@ -465,16 +480,3 @@ int main2(int argc, char **argv)
|
|||
logger(LOG_NOTICE, _("Terminating"));
|
||||
return status;
|
||||
}
|
||||
|
||||
logger(LOG_ERR, _("Unrecoverable error"));
|
||||
cp_trace();
|
||||
|
||||
if(do_detach) {
|
||||
logger(LOG_NOTICE, _("Restarting in %d seconds!"), maxtimeout);
|
||||
sleep(maxtimeout);
|
||||
} else {
|
||||
logger(LOG_ERR, _("Not restarting."));
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue