Eliminate local version of PRI_MAX_TIMERS.

git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.4@920 2fbb986a-6c06-0410-b554-c9c1f0a7f128
This commit is contained in:
Richard Mudgett 2009-06-26 19:43:13 +00:00
parent 4f0b3f3109
commit 01e637393e

View File

@ -48,11 +48,9 @@ struct q921_frame;
enum q931_state;
enum q931_mode;
/* No more than 128 scheduled events */
/*! Maximum number of scheduled events active at the same time. */
#define MAX_SCHED 128
#define MAX_TIMERS 32
/*! \brief D channel controller structure */
struct pri {
int fd; /* File descriptor for D-Channel */
@ -100,7 +98,7 @@ struct pri {
int ri;
int t200_timer; /* T-200 retransmission timer */
/* All ISDN Timer values */
int timers[MAX_TIMERS];
int timers[PRI_MAX_TIMERS];
/* Used by scheduler */
struct timeval tv;