summaryrefslogtreecommitdiffstats
path: root/sys/net/if_slvar.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/net/if_slvar.h')
-rw-r--r--sys/net/if_slvar.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/sys/net/if_slvar.h b/sys/net/if_slvar.h
index 1621c97..b19bd26 100644
--- a/sys/net/if_slvar.h
+++ b/sys/net/if_slvar.h
@@ -32,12 +32,14 @@
*
* @(#)if_slvar.h 8.3 (Berkeley) 2/1/94
*
- * $Id$
+ * $Id: if_slvar.h,v 1.13 1997/02/22 09:41:06 peter Exp $
*/
#ifndef _NET_IF_SLVAR_H_
#define _NET_IF_SLVAR_H_
+#include <sys/callout.h>
+
/*
* Definitions for SLIP interface data structures
*
@@ -57,7 +59,13 @@ struct sl_softc {
long sc_abortcount; /* number of abort escape chars */
long sc_starttime; /* time of first abort in window */
u_int sc_keepalive; /* time to decide link hang */
- u_int sc_outfill; /* time to send FRAME_END when output idle */
+ u_int sc_outfill; /* time to send FRAME_END when output idle */
+ /*
+ * Handles for scheduling outfill and
+ * keepalive timeouts.
+ */
+ struct callout_handle sc_ofhandle;
+ struct callout_handle sc_kahandle;
#ifdef INET /* XXX */
struct slcompress sc_comp; /* tcp compression data */
#endif
OpenPOWER on IntegriCloud