projects
/
l2tpns.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
2643262
)
fix inverted timeout test
author
Brendan O'Dea
<bod@optus.net>
Wed, 10 Aug 2005 08:36:48 +0000
(08:36 +0000)
committer
Brendan O'Dea
<bod@optus.net>
Wed, 10 Aug 2005 08:36:48 +0000
(08:36 +0000)
l2tpns.c
patch
|
blob
|
history
diff --git
a/l2tpns.c
b/l2tpns.c
index
39f1919
..
5bac272
100644
(file)
--- a/
l2tpns.c
+++ b/
l2tpns.c
@@
-4,7
+4,7
@@
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
// vim: sw=8 ts=8
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
// vim: sw=8 ts=8
-char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.11
7 2005-08-10 08:04:26
bodea Exp $";
+char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.11
8 2005-08-10 08:36:48
bodea Exp $";
#include <arpa/inet.h>
#include <assert.h>
#include <arpa/inet.h>
#include <assert.h>
@@
-2715,7
+2715,7
@@
static void regular_cleanups(double period)
}
// PPP timeouts
}
// PPP timeouts
- if (sess_local[s].lcp.restart
>
= time_now)
+ if (sess_local[s].lcp.restart
<
= time_now)
{
int next_state = session[s].ppp.lcp;
switch (session[s].ppp.lcp)
{
int next_state = session[s].ppp.lcp;
switch (session[s].ppp.lcp)
@@
-2746,7
+2746,7
@@
static void regular_cleanups(double period)
continue;
}
continue;
}
- if (sess_local[s].ipcp.restart
>
= time_now)
+ if (sess_local[s].ipcp.restart
<
= time_now)
{
int next_state = session[s].ppp.ipcp;
switch (session[s].ppp.ipcp)
{
int next_state = session[s].ppp.ipcp;
switch (session[s].ppp.ipcp)
@@
-2777,7
+2777,7
@@
static void regular_cleanups(double period)
continue;
}
continue;
}
- if (sess_local[s].ipv6cp.restart
>
= time_now)
+ if (sess_local[s].ipv6cp.restart
<
= time_now)
{
int next_state = session[s].ppp.ipv6cp;
switch (session[s].ppp.ipv6cp)
{
int next_state = session[s].ppp.ipv6cp;
switch (session[s].ppp.ipv6cp)
@@
-2805,7
+2805,7
@@
static void regular_cleanups(double period)
}
}
}
}
- if (sess_local[s].ccp.restart
>
= time_now)
+ if (sess_local[s].ccp.restart
<
= time_now)
{
int next_state = session[s].ppp.ccp;
switch (session[s].ppp.ccp)
{
int next_state = session[s].ppp.ccp;
switch (session[s].ppp.ccp)