summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>1995-04-24 02:42:06 +0000
committerPaul Mackerras <paulus@samba.org>1995-04-24 02:42:06 +0000
commit533de9783f794c6b1506ff92939a72eb32102ffb (patch)
tree9769b28fbc1cb10cd9a1e631ed13c9e63682eacb /include
parent4e8378004c3f7b84cd84aaad7cadd61f7af4b72f (diff)
downloadppp-533de9783f794c6b1506ff92939a72eb32102ffb.tar.gz
changed int to time_t for idle times
Diffstat (limited to 'include')
-rw-r--r--include/net/ppp_defs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/ppp_defs.h b/include/net/ppp_defs.h
index 4f0e711..3e2f9a7 100644
--- a/include/net/ppp_defs.h
+++ b/include/net/ppp_defs.h
@@ -1,4 +1,4 @@
-/* $Id: ppp_defs.h,v 1.5 1994/12/05 00:32:37 paulus Exp $ */
+/* $Id: ppp_defs.h,v 1.6 1995/04/24 02:42:06 paulus Exp $ */
/*
* ppp_defs.h - PPP definitions.
@@ -145,8 +145,8 @@ struct ppp_comp_stats {
* the last NP packet was sent or received.
*/
struct ppp_idle {
- int xmit_idle; /* time since last NP packet sent */
- int recv_idle; /* time since last NP packet received */
+ time_t xmit_idle; /* time since last NP packet sent */
+ time_t recv_idle; /* time since last NP packet received */
};
#ifndef __P