]> git.ozlabs.org Git - ppp.git/commitdiff
changed int to time_t for idle times
authorPaul Mackerras <paulus@samba.org>
Mon, 24 Apr 1995 02:42:06 +0000 (02:42 +0000)
committerPaul Mackerras <paulus@samba.org>
Mon, 24 Apr 1995 02:42:06 +0000 (02:42 +0000)
include/net/ppp_defs.h

index 4f0e711561cd9337ab829741e54723c64d87780f..3e2f9a7379f99e0cb4e271131f5d981267e96d06 100644 (file)
@@ -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.
 
 /*
  * ppp_defs.h - PPP definitions.
@@ -145,8 +145,8 @@ struct ppp_comp_stats {
  * the last NP packet was sent or received.
  */
 struct ppp_idle {
  * 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
 };
 
 #ifndef __P