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:
afc8f4c
)
include Acct-Session-Time in interim records
author
bodea
<bodea>
Sun, 31 Jul 2005 10:35:39 +0000
(10:35 +0000)
committer
bodea
<bodea>
Sun, 31 Jul 2005 10:35:39 +0000
(10:35 +0000)
Changes
patch
|
blob
|
history
radius.c
patch
|
blob
|
history
diff --git
a/Changes
b/Changes
index
e579e70
..
d718511
100644
(file)
--- a/
Changes
+++ b/
Changes
@@
-5,6
+5,7
@@
- Clean up new warnings from gcc 4.0.
- Replace flags used for LCP/IPCP with state machine.
- Use openssl MD5, fix DAE vector (Alex Kiernan).
- Clean up new warnings from gcc 4.0.
- Replace flags used for LCP/IPCP with state machine.
- Use openssl MD5, fix DAE vector (Alex Kiernan).
+- Include Acct-Session-Time in interim records.
* Tue Jun 14 2005 Brendan O'Dea <bod@optusnet.com.au> 2.1.1
- Add missing newline to backtrace macro.
* Tue Jun 14 2005 Brendan O'Dea <bod@optusnet.com.au> 2.1.1
- Add missing newline to backtrace macro.
diff --git
a/radius.c
b/radius.c
index
8799622
..
9c8d444
100644
(file)
--- a/
radius.c
+++ b/
radius.c
@@
-1,6
+1,6
@@
// L2TPNS Radius Stuff
// L2TPNS Radius Stuff
-char const *cvs_id_radius = "$Id: radius.c,v 1.3
7 2005/07/31 10:04:10
bodea Exp $";
+char const *cvs_id_radius = "$Id: radius.c,v 1.3
8 2005/07/31 10:35:39
bodea Exp $";
#include <time.h>
#include <stdio.h>
#include <time.h>
#include <stdio.h>
@@
-265,13
+265,11
@@
void radiussend(uint16_t r, uint8_t state)
p[1] = 6;
*(uint32_t *) (p + 2) = htonl(session[s].cout);
p += p[1];
p[1] = 6;
*(uint32_t *) (p + 2) = htonl(session[s].cout);
p += p[1];
- if (state == RADIUSSTOP)
- {
- *p = 46; // session time
- p[1] = 6;
- *(uint32_t *) (p + 2) = htonl(time(NULL) - session[s].opened);
- p += p[1];
- }
+
+ *p = 46; // session time
+ p[1] = 6;
+ *(uint32_t *) (p + 2) = htonl(time(NULL) - session[s].opened);
+ p += p[1];
*p = 47; // input packets
p[1] = 6;
*p = 47; // input packets
p[1] = 6;