1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

sc_lasttime and sc_starttime are time_t's, not long's.

This commit is contained in:
Matthew Dillon 2001-10-27 20:31:24 +00:00
parent cb5f460523
commit 1fc36ee6d4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85608

View File

@ -56,9 +56,9 @@ struct sl_softc {
u_char *sc_buf; /* input buffer */ u_char *sc_buf; /* input buffer */
u_int sc_flags; /* see below */ u_int sc_flags; /* see below */
u_int sc_escape; /* =1 if last char input was FRAME_ESCAPE */ u_int sc_escape; /* =1 if last char input was FRAME_ESCAPE */
long sc_lasttime; /* last time a char arrived */ time_t sc_lasttime; /* last time a char arrived */
long sc_abortcount; /* number of abort escape chars */ long sc_abortcount; /* number of abort escape chars */
long sc_starttime; /* time of first abort in window */ time_t sc_starttime; /* time of first abort in window */
u_int sc_keepalive; /* time to decide link hang */ 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 */
/* /*