-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxl2tpd.c.patch
executable file
·39 lines (39 loc) · 1.37 KB
/
xl2tpd.c.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
--- xl2tpd-1.1.12/xl2tpd.c.orig 2007-10-20 08:22:55.000000000 +0400
+++ xl2tpd-1.1.12/xl2tpd.c 2008-06-30 20:58:14.000000000 +0400
@@ -584,9 +584,33 @@
hp = gethostbyname (host);
if (!hp)
{
- l2tp_log (LOG_WARNING, "Host name lookup failed for %s.\n",
- host);
- return NULL;
+ if ( lac->redial )
+ {
+ int imax=lac->rmax;
+ if ( lac->rmax == 0 )
+ imax = 1;
+ while ( imax > 0 )
+ {
+ hp = gethostbyname ( host );
+ if ( hp )
+ break;
+ l2tp_log ( LOG_WARNING, "Y: Host name lookup failed for %s. Trying to look again in %d seconds.\n", host, lac->rtimeout );
+ if ( lac->rtimeout > 0 )
+ sleep ( lac->rtimeout );
+ if ( lac->rmax > 0 )
+ imax--;
+ }
+ if ( ( imax == 0 ) && ( lac->rmax > 0 ) )
+ {
+ l2tp_log ( LOG_WARNING, "Y: Host name lookup failed for %s after %d tries. Lookup stops now.\n", host, lac->rmax );
+ return NULL;
+ }
+ }
+ else
+ {
+ l2tp_log (LOG_WARNING, "Host name lookup failed for %s.\n", host);
+ return NULL;
+ }
}
bcopy (hp->h_addr, &addr, hp->h_length);
/* Force creation of a new tunnel