1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by the Internet Initiative Japan. The name of the
|
|
|
|
* IIJ may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
1997-10-26 01:04:02 +00:00
|
|
|
* $Id: timeout.h,v 1.12 1997/09/03 00:40:51 brian Exp $
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
1997-08-25 00:29:32 +00:00
|
|
|
#define TICKUNIT 100000 /* Unit in usec */
|
1995-01-31 06:29:58 +00:00
|
|
|
#define SECTICKS (1000000/TICKUNIT)
|
|
|
|
|
|
|
|
struct pppTimer {
|
1997-08-25 00:29:32 +00:00
|
|
|
int state;
|
|
|
|
u_long rest; /* Ticks to expire */
|
|
|
|
u_long load; /* Initial load value */
|
1997-10-26 01:04:02 +00:00
|
|
|
void (*func)(); /* Function called when timer is expired */
|
1997-08-25 00:29:32 +00:00
|
|
|
void *arg; /* Argument passed to timeout function */
|
1995-01-31 06:29:58 +00:00
|
|
|
struct pppTimer *next; /* Link to next timer */
|
|
|
|
struct pppTimer *enext; /* Link to next expired timer */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TIMER_STOPPED 0
|
|
|
|
#define TIMER_RUNNING 1
|
|
|
|
#define TIMER_EXPIRED 2
|
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
extern struct pppTimer *TimerList;
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1997-06-09 03:27:43 +00:00
|
|
|
extern void StartTimer(struct pppTimer *);
|
|
|
|
extern void StopTimer(struct pppTimer *);
|
|
|
|
extern void TimerService(void);
|
|
|
|
extern void TermTimerService(void);
|
|
|
|
extern void StartIdleTimer(void);
|
1997-09-03 00:40:51 +00:00
|
|
|
extern void StopIdleTimer(void);
|
1997-06-09 03:27:43 +00:00
|
|
|
extern void UpdateIdleTimer(void);
|
1997-10-26 01:04:02 +00:00
|
|
|
extern void ShowTimers(void);
|