diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2011-01-27 08:27:39 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2011-01-27 08:27:39 +0300 |
commit | 673bea74d2beb8d4260355f928499230c7ff9b17 (patch) | |
tree | 4b5474b9623f0b6f5a8dbdde48f1dc906fdd322e /accel-pppd/radius/radius.h | |
parent | 7f8d3e240fe9544b22846ea05b09515922d1de57 (diff) | |
download | accel-ppp-xebd-673bea74d2beb8d4260355f928499230c7ff9b17.tar.gz accel-ppp-xebd-673bea74d2beb8d4260355f928499230c7ff9b17.zip |
radius: extended statistics calculation
Diffstat (limited to 'accel-pppd/radius/radius.h')
-rw-r--r-- | accel-pppd/radius/radius.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/accel-pppd/radius/radius.h b/accel-pppd/radius/radius.h index ad229d2..e580b93 100644 --- a/accel-pppd/radius/radius.h +++ b/accel-pppd/radius/radius.h @@ -2,6 +2,7 @@ #define __RADIUS_H #include <stdint.h> +#include <sys/time.h> #define REQ_LENGTH_MAX 4096 @@ -80,6 +81,7 @@ struct rad_packet_t int code; uint8_t id; int len; + struct timeval tv; struct list_head attrs; void *buf; }; |