diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-30 01:05:20 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-30 01:05:20 +0000 |
commit | 9f4ec21dbc20e504e07b8f7d1315b6561c284d98 (patch) | |
tree | b93968478dcd3b22bd671540da75e15f8a2b7f5c /sys/net/if_pppvar.h | |
parent | f0a1c73c54dab14ed95af7efc7f7a1ad395ef175 (diff) |
Convert to use new timeout API.
Diffstat (limited to 'sys/net/if_pppvar.h')
-rw-r--r-- | sys/net/if_pppvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_pppvar.h b/sys/net/if_pppvar.h index 69fb536960c..6372adb38de 100644 --- a/sys/net/if_pppvar.h +++ b/sys/net/if_pppvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pppvar.h,v 1.7 1998/05/08 05:02:08 millert Exp $ */ +/* $OpenBSD: if_pppvar.h,v 1.8 2000/06/30 01:05:19 art Exp $ */ /* $NetBSD: if_pppvar.h,v 1.5 1997/01/03 07:23:29 mikel Exp $ */ /* * if_pppvar.h - private structures and declarations for PPP. @@ -57,6 +57,7 @@ */ struct ppp_softc { struct ifnet sc_if; /* network-visible interface */ + struct timeout sc_timo; /* timeout control (for ptys) */ int sc_unit; /* XXX unit number */ u_int sc_flags; /* control/status bits; see if_ppp.h */ void *sc_devp; /* pointer to device-dep structure */ |