[libpri-commits] rmudgett: branch group/issue14292 r926 - /team/group/issue14292/
SVN commits to the libpri project
libpri-commits at lists.digium.com
Fri Jun 26 20:44:07 CDT 2009
Author: rmudgett
Date: Fri Jun 26 20:44:04 2009
New Revision: 926
URL: http://svn.asterisk.org/svn-view/libpri?view=rev&rev=926
Log:
Merged revisions 922 via svnmerge from
https://origsvn.digium.com/svn/libpri/team/group/issue14068
................
r922 | root | 2009-06-26 15:32:08 -0500 (Fri, 26 Jun 2009) | 21 lines
Merged revisions 919-921 via svnmerge from
file:///srv/subversion/repos/libpri/branches/1.4
........
r919 | rmudgett | 2009-06-26 14:41:56 -0500 (Fri, 26 Jun 2009) | 1 line
Doxygenify the timer comments.
........
r920 | rmudgett | 2009-06-26 14:43:13 -0500 (Fri, 26 Jun 2009) | 1 line
Eliminate local version of PRI_MAX_TIMERS.
........
r921 | rmudgett | 2009-06-26 14:50:19 -0500 (Fri, 26 Jun 2009) | 6 lines
Fix potential buffer overflow in pri_dump_info_str().
* Created pri_snprintf() to prevent buffer overflow in pri_dump_info_str().
* Extracted timer name to timer number table from pri_timer2idx() so
pri_dump_info_str() can use it.
........
................
Modified:
team/group/issue14292/ (props changed)
team/group/issue14292/libpri.h
team/group/issue14292/pri.c
team/group/issue14292/pri_internal.h
Propchange: team/group/issue14292/
------------------------------------------------------------------------------
automerge = *
Propchange: team/group/issue14292/
------------------------------------------------------------------------------
--- issue14292-integrated (original)
+++ issue14292-integrated Fri Jun 26 20:44:04 2009
@@ -1,1 +1,1 @@
-/team/group/issue14068:1-915
+/team/group/issue14068:1-925
Propchange: team/group/issue14292/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Fri Jun 26 20:44:04 2009
@@ -1,1 +1,1 @@
-/branches/1.4:1-914
+/branches/1.4:1-921
Modified: team/group/issue14292/libpri.h
URL: http://svn.asterisk.org/svn-view/libpri/team/group/issue14292/libpri.h?view=diff&rev=926&r1=925&r2=926
==============================================================================
--- team/group/issue14292/libpri.h (original)
+++ team/group/issue14292/libpri.h Fri Jun 26 20:44:04 2009
@@ -959,32 +959,32 @@
int pri_get_timer(struct pri *pri, int timer);
int pri_timer2idx(const char *timer_name);
-/* New configurable timers and counters must be added to the end of the list */
+/*! New configurable timers and counters must be added to the end of the list */
enum PRI_TIMERS_AND_COUNTERS {
- PRI_TIMER_N200, /* Maximum numer of Q.921 retransmissions */
- PRI_TIMER_N201, /* Maximum numer of octets in an information field */
- PRI_TIMER_N202, /* Maximum numer of transmissions of the TEI identity request message */
- PRI_TIMER_K, /* Maximum number of outstanding I-frames */
-
- PRI_TIMER_T200, /* Time between SABME's */
- PRI_TIMER_T201, /* Minimum time between retransmissions of the TEI Identity check messages */
- PRI_TIMER_T202, /* Minimum time between transmission of TEI Identity request messages */
- PRI_TIMER_T203, /* Maximum time without exchanging packets */
+ PRI_TIMER_N200, /*!< Maximum numer of Q.921 retransmissions */
+ PRI_TIMER_N201, /*!< Maximum numer of octets in an information field */
+ PRI_TIMER_N202, /*!< Maximum numer of transmissions of the TEI identity request message */
+ PRI_TIMER_K, /*!< Maximum number of outstanding I-frames */
+
+ PRI_TIMER_T200, /*!< Time between SABME's */
+ PRI_TIMER_T201, /*!< Minimum time between retransmissions of the TEI Identity check messages */
+ PRI_TIMER_T202, /*!< Minimum time between transmission of TEI Identity request messages */
+ PRI_TIMER_T203, /*!< Maximum time without exchanging packets */
PRI_TIMER_T300,
- PRI_TIMER_T301, /* Maximum time to respond to an ALERT */
+ PRI_TIMER_T301, /*!< Maximum time to respond to an ALERT */
PRI_TIMER_T302,
- PRI_TIMER_T303, /* Maximum time to wait after sending a SETUP without a response */
+ PRI_TIMER_T303, /*!< Maximum time to wait after sending a SETUP without a response */
PRI_TIMER_T304,
- PRI_TIMER_T305, /* Wait for DISCONNECT acknowledge */
+ PRI_TIMER_T305, /*!< Wait for DISCONNECT acknowledge */
PRI_TIMER_T306,
PRI_TIMER_T307,
- PRI_TIMER_T308, /* Wait for RELEASE acknowledge */
- PRI_TIMER_T309, /* Time active calls can tollerate data link layer being down before clearing. */
- PRI_TIMER_T310, /* Maximum time between receiving a CALL_PROCEEDING and receiving a ALERT/CONNECT/DISCONNECT/PROGRESS */
- PRI_TIMER_T313, /* Wait for CONNECT acknowledge, CPE side only */
+ PRI_TIMER_T308, /*!< Wait for RELEASE acknowledge */
+ PRI_TIMER_T309, /*!< Time active calls can tollerate data link layer being down before clearing. */
+ PRI_TIMER_T310, /*!< Maximum time between receiving a CALL_PROCEEDING and receiving a ALERT/CONNECT/DISCONNECT/PROGRESS */
+ PRI_TIMER_T313, /*!< Wait for CONNECT acknowledge, CPE side only */
PRI_TIMER_T314,
- PRI_TIMER_T316, /* Maximum time between transmitting a RESTART and receiving a RESTART ACK */
+ PRI_TIMER_T316, /*!< Maximum time between transmitting a RESTART and receiving a RESTART ACK */
PRI_TIMER_T317,
PRI_TIMER_T318,
PRI_TIMER_T319,
@@ -992,15 +992,16 @@
PRI_TIMER_T321,
PRI_TIMER_T322,
- PRI_TIMER_TM20, /* Maximum time awaiting XID response */
- PRI_TIMER_NM20, /* Number of XID retransmits */
+ PRI_TIMER_TM20, /*!< Maximum time awaiting XID response */
+ PRI_TIMER_NM20, /*!< Number of XID retransmits */
+
+ PRI_TIMER_CCBST2,/*!< maximum time on completion of CC Call */
/* Must be last in the enum list */
_PRI_MAX_TIMERS,
PRI_MAX_TIMERS = (_PRI_MAX_TIMERS < 32) ? 32 : _PRI_MAX_TIMERS
};
-#define PRI_TIMER_CCBST2 30 /* maximum time on completion of CC Call */
/* Get PRI version */
const char *pri_get_version(void);
Modified: team/group/issue14292/pri.c
URL: http://svn.asterisk.org/svn-view/libpri/team/group/issue14292/pri.c?view=diff&rev=926&r1=925&r2=926
==============================================================================
--- team/group/issue14292/pri.c (original)
+++ team/group/issue14292/pri.c Fri Jun 26 20:44:04 2009
@@ -42,6 +42,53 @@
#include "pri_facility.h"
#include "pri_q921.h"
#include "pri_q931.h"
+
+#define PRI_BIT(a_bit) (1UL << (a_bit))
+#define PRI_ALL_SWITCHES 0xFFFFFFFF
+
+struct pri_timer_table {
+ const char *name;
+ enum PRI_TIMERS_AND_COUNTERS number;
+ unsigned long used_by;
+};
+
+/*!
+ * \note Sort the timer table entries in the order of the timer name so
+ * pri_dump_info_str() can display them in a consitent order.
+ */
+static const struct pri_timer_table pri_timer[] = {
+/* *INDENT-OFF* */
+ /* timer name timer number used by switches */
+ { "N200", PRI_TIMER_N200, PRI_ALL_SWITCHES },
+ { "N201", PRI_TIMER_N201, PRI_ALL_SWITCHES },
+ { "N202", PRI_TIMER_N202, PRI_ALL_SWITCHES },
+ { "K", PRI_TIMER_K, PRI_ALL_SWITCHES },
+ { "T200", PRI_TIMER_T200, PRI_ALL_SWITCHES },
+ { "T202", PRI_TIMER_T202, PRI_ALL_SWITCHES },
+ { "T203", PRI_TIMER_T203, PRI_ALL_SWITCHES },
+ { "T300", PRI_TIMER_T300, PRI_ALL_SWITCHES },
+ { "T301", PRI_TIMER_T301, PRI_ALL_SWITCHES },
+ { "T302", PRI_TIMER_T302, PRI_ALL_SWITCHES },
+ { "T303", PRI_TIMER_T303, PRI_ALL_SWITCHES },
+ { "T304", PRI_TIMER_T304, PRI_ALL_SWITCHES },
+ { "T305", PRI_TIMER_T305, PRI_ALL_SWITCHES },
+ { "T306", PRI_TIMER_T306, PRI_ALL_SWITCHES },
+ { "T307", PRI_TIMER_T307, PRI_ALL_SWITCHES },
+ { "T308", PRI_TIMER_T308, PRI_ALL_SWITCHES },
+ { "T309", PRI_TIMER_T309, PRI_ALL_SWITCHES },
+ { "T310", PRI_TIMER_T310, PRI_ALL_SWITCHES },
+ { "T313", PRI_TIMER_T313, PRI_ALL_SWITCHES },
+ { "T314", PRI_TIMER_T314, PRI_ALL_SWITCHES },
+ { "T316", PRI_TIMER_T316, PRI_ALL_SWITCHES },
+ { "T317", PRI_TIMER_T317, PRI_ALL_SWITCHES },
+ { "T318", PRI_TIMER_T318, PRI_ALL_SWITCHES },
+ { "T319", PRI_TIMER_T319, PRI_ALL_SWITCHES },
+ { "T320", PRI_TIMER_T320, PRI_ALL_SWITCHES },
+ { "T321", PRI_TIMER_T321, PRI_ALL_SWITCHES },
+ { "T322", PRI_TIMER_T322, PRI_ALL_SWITCHES },
+ { "CCT2", PRI_TIMER_CCBST2, PRI_BIT(PRI_SWITCH_QSIG) },
+/* *INDENT-ON* */
+};
char *pri_node2str(int node)
{
@@ -93,17 +140,17 @@
}
/* Set timer values to standard defaults. Time is in ms. */
- ctrl->timers[PRI_TIMER_N200] = 3; /* Max numer of Q.921 retransmissions */
- ctrl->timers[PRI_TIMER_N202] = 3; /* Max numer of transmissions of the TEI identity request message */
- ctrl->timers[PRI_TIMER_K] = 7; /* Max number of outstanding I-frames */
- ctrl->timers[PRI_TIMER_T200] = 1000; /* Time between SABME's */
- ctrl->timers[PRI_TIMER_T202] = 10000; /* Min time between transmission of TEI Identity request messages */
- ctrl->timers[PRI_TIMER_T203] = 10000; /* Max time without exchanging packets */
- ctrl->timers[PRI_TIMER_T305] = 30000; /* Wait for DISCONNECT acknowledge */
- ctrl->timers[PRI_TIMER_T308] = 4000; /* Wait for RELEASE acknowledge */
- ctrl->timers[PRI_TIMER_T313] = 4000; /* Wait for CONNECT acknowledge, CPE side only */
- ctrl->timers[PRI_TIMER_TM20] = 2500; /* Max time awaiting XID response - Q.921 Appendix IV */
- ctrl->timers[PRI_TIMER_NM20] = 3; /* Number of XID retransmits - Q.921 Appendix IV */
+ ctrl->timers[PRI_TIMER_N200] = 3; /* Max numer of Q.921 retransmissions */
+ ctrl->timers[PRI_TIMER_N202] = 3; /* Max numer of transmissions of the TEI identity request message */
+ ctrl->timers[PRI_TIMER_K] = 7; /* Max number of outstanding I-frames */
+ ctrl->timers[PRI_TIMER_T200] = 1000; /* Time between SABME's */
+ ctrl->timers[PRI_TIMER_T202] = 10 * 1000; /* Min time between transmission of TEI Identity request messages */
+ ctrl->timers[PRI_TIMER_T203] = 10 * 1000; /* Max time without exchanging packets */
+ ctrl->timers[PRI_TIMER_T305] = 30 * 1000; /* Wait for DISCONNECT acknowledge */
+ ctrl->timers[PRI_TIMER_T308] = 4 * 1000; /* Wait for RELEASE acknowledge */
+ ctrl->timers[PRI_TIMER_T313] = 4 * 1000; /* Wait for CONNECT acknowledge, CPE side only */
+ ctrl->timers[PRI_TIMER_TM20] = 2500; /* Max time awaiting XID response - Q.921 Appendix IV */
+ ctrl->timers[PRI_TIMER_NM20] = 3; /* Number of XID retransmits - Q.921 Appendix IV */
ctrl->timers[PRI_TIMER_CCBST2] = 45 * 60 * 1000;/* Q.SIG CC-Timer2 45 min */
/* Set any switch specific override default values */
@@ -140,49 +187,13 @@
int pri_timer2idx(const char *timer_name)
{
- static const struct {
- const char *name;
- int number;
- } timer[] = {
-/* *INDENT-OFF* */
- { "N200", PRI_TIMER_N200 },
- { "N201", PRI_TIMER_N201 },
- { "N202", PRI_TIMER_N202 },
- { "K", PRI_TIMER_K },
- { "T200", PRI_TIMER_T200 },
- { "T202", PRI_TIMER_T202 },
- { "T203", PRI_TIMER_T203 },
- { "T300", PRI_TIMER_T300 },
- { "T301", PRI_TIMER_T301 },
- { "T302", PRI_TIMER_T302 },
- { "T303", PRI_TIMER_T303 },
- { "T304", PRI_TIMER_T304 },
- { "T305", PRI_TIMER_T305 },
- { "T306", PRI_TIMER_T306 },
- { "T307", PRI_TIMER_T307 },
- { "T308", PRI_TIMER_T308 },
- { "T309", PRI_TIMER_T309 },
- { "T310", PRI_TIMER_T310 },
- { "T313", PRI_TIMER_T313 },
- { "T314", PRI_TIMER_T314 },
- { "T316", PRI_TIMER_T316 },
- { "T317", PRI_TIMER_T317 },
- { "T318", PRI_TIMER_T318 },
- { "T319", PRI_TIMER_T319 },
- { "T320", PRI_TIMER_T320 },
- { "T321", PRI_TIMER_T321 },
- { "T322", PRI_TIMER_T322 },
- { "CCT2", PRI_TIMER_CCBST2 },
-/* *INDENT-ON* */
- };
-
unsigned idx;
- int timer_number;
+ enum PRI_TIMERS_AND_COUNTERS timer_number;
timer_number = -1;
- for (idx = 0; idx < ARRAY_LEN(timer); ++idx) {
- if (!strcasecmp(timer_name, timer[idx].name)) {
- timer_number = timer[idx].number;
+ for (idx = 0; idx < ARRAY_LEN(pri_timer); ++idx) {
+ if (!strcasecmp(timer_name, pri_timer[idx].name)) {
+ timer_number = pri_timer[idx].number;
break;
}
}
@@ -1074,79 +1085,138 @@
return pri->fd;
}
-char *pri_dump_info_str(struct pri *pri)
-{
- char buf[4096];
- int len = 0;
+/*!
+ * \internal
+ * \brief Append snprintf output to the given buffer.
+ *
+ * \param buf Buffer currently filling.
+ * \param buf_used Offset into buffer where to put new stuff.
+ * \param buf_size Actual buffer size of buf.
+ * \param format printf format string.
+ *
+ * \return Total buffer space used.
+ */
+static size_t pri_snprintf(char *buf, size_t buf_used, size_t buf_size, const char *format, ...) __attribute__((format(printf, 4, 5)));
+static size_t pri_snprintf(char *buf, size_t buf_used, size_t buf_size, const char *format, ...)
+{
+ va_list args;
+
+ if (buf_used < buf_size) {
+ va_start(args, format);
+ buf_used += vsnprintf(buf + buf_used, buf_size - buf_used, format, args);
+ va_end(args);
+ }
+ if (buf_size < buf_used) {
+ buf_used = buf_size + 1;
+ }
+ return buf_used;
+}
+
+char *pri_dump_info_str(struct pri *ctrl)
+{
+ char *buf;
+ size_t buf_size;
+ size_t used;
#ifdef LIBPRI_COUNTERS
struct q921_frame *f;
- int q921outstanding = 0;
+ unsigned q921outstanding;
#endif
- q931_call *cur, *prev;
+ unsigned idx;
+ unsigned long switch_bit;
+ q931_call *cur;
struct pri *master;
- int counter = 0;
-
- if (!pri)
+
+ if (!ctrl) {
return NULL;
+ }
+
+ buf_size = 4096; /* This should be bigger than we will ever need. */
+ buf = malloc(buf_size);
+ if (!buf) {
+ return NULL;
+ }
/* Might be nice to format these a little better */
- len += sprintf(buf + len, "Switchtype: %s\n", pri_switch2str(pri->switchtype));
- len += sprintf(buf + len, "Type: %s\n", pri_node2str(pri->localtype));
+ used = 0;
+ used = pri_snprintf(buf, used, buf_size, "Switchtype: %s\n",
+ pri_switch2str(ctrl->switchtype));
+ used = pri_snprintf(buf, used, buf_size, "Type: %s\n", pri_node2str(ctrl->localtype));
#ifdef LIBPRI_COUNTERS
/* Remember that Q921 Counters include Q931 packets (and any retransmissions) */
- len += sprintf(buf + len, "Q931 RX: %d\n", pri->q931_rxcount);
- len += sprintf(buf + len, "Q931 TX: %d\n", pri->q931_txcount);
- len += sprintf(buf + len, "Q921 RX: %d\n", pri->q921_rxcount);
- len += sprintf(buf + len, "Q921 TX: %d\n", pri->q921_txcount);
- f = pri->txqueue;
+ used = pri_snprintf(buf, used, buf_size, "Q931 RX: %d\n", ctrl->q931_rxcount);
+ used = pri_snprintf(buf, used, buf_size, "Q931 TX: %d\n", ctrl->q931_txcount);
+ used = pri_snprintf(buf, used, buf_size, "Q921 RX: %d\n", ctrl->q921_rxcount);
+ used = pri_snprintf(buf, used, buf_size, "Q921 TX: %d\n", ctrl->q921_txcount);
+ q921outstanding = 0;
+ f = ctrl->txqueue;
while (f) {
q921outstanding++;
f = f->next;
}
- len += sprintf(buf + len, "Q921 Outstanding: %d\n", q921outstanding);
+ used = pri_snprintf(buf, used, buf_size, "Q921 Outstanding: %u\n", q921outstanding);
#endif
- len += sprintf(buf + len, "Window Length: %d/%d\n", pri->windowlen, pri->window);
- len += sprintf(buf + len, "Sentrej: %d\n", pri->sentrej);
- len += sprintf(buf + len, "SolicitFbit: %d\n", pri->solicitfbit);
- len += sprintf(buf + len, "Retrans: %d\n", pri->retrans);
- len += sprintf(buf + len, "Busy: %d\n", pri->busy);
- len += sprintf(buf + len, "Overlap Dial: %d\n", pri->overlapdial);
- len += sprintf(buf + len, "Logical Channel Mapping: %d\n", pri->chan_mapping_logical);
- len += sprintf(buf + len, "T200 Timer: %d\n", pri->timers[PRI_TIMER_T200]);
- len += sprintf(buf + len, "T203 Timer: %d\n", pri->timers[PRI_TIMER_T203]);
- len += sprintf(buf + len, "T305 Timer: %d\n", pri->timers[PRI_TIMER_T305]);
- len += sprintf(buf + len, "T308 Timer: %d\n", pri->timers[PRI_TIMER_T308]);
- len += sprintf(buf + len, "T309 Timer: %d\n", pri->timers[PRI_TIMER_T309]);
- len += sprintf(buf + len, "T313 Timer: %d\n", pri->timers[PRI_TIMER_T313]);
- len += sprintf(buf + len, "N200 Counter: %d\n", pri->timers[PRI_TIMER_N200]);
- len += sprintf(buf + len, "CCT2 Timer: %d\n", pri->timers[PRI_TIMER_CCBST2]);
+ used = pri_snprintf(buf, used, buf_size, "Window Length: %d/%d\n", ctrl->windowlen,
+ ctrl->window);
+ used = pri_snprintf(buf, used, buf_size, "Sentrej: %d\n", ctrl->sentrej);
+ used = pri_snprintf(buf, used, buf_size, "SolicitFbit: %d\n", ctrl->solicitfbit);
+ used = pri_snprintf(buf, used, buf_size, "Retrans: %d\n", ctrl->retrans);
+ used = pri_snprintf(buf, used, buf_size, "Busy: %d\n", ctrl->busy);
+ used = pri_snprintf(buf, used, buf_size, "Overlap Dial: %d\n", ctrl->overlapdial);
+ used = pri_snprintf(buf, used, buf_size, "Logical Channel Mapping: %d\n",
+ ctrl->chan_mapping_logical);
+ used = pri_snprintf(buf, used, buf_size, "Timer and counter settings:\n");
+ switch_bit = PRI_BIT(ctrl->switchtype);
+ for (idx = 0; idx < ARRAY_LEN(pri_timer); ++idx) {
+ if (pri_timer[idx].used_by & switch_bit) {
+ enum PRI_TIMERS_AND_COUNTERS tmr;
+
+ tmr = pri_timer[idx].number;
+ if (0 <= ctrl->timers[tmr] || tmr == PRI_TIMER_T309) {
+ used = pri_snprintf(buf, used, buf_size, " %s: %d\n",
+ pri_timer[idx].name, ctrl->timers[tmr]);
+ }
+ }
+ }
+
/* Find the master - He has the call pool */
- if (pri->master)
- master = pri->master;
- else
- master = pri;
-
+ if (ctrl->master) {
+ master = ctrl->master;
+ } else {
+ master = ctrl;
+ }
+
+ idx = 0;
cur = *master->callpool;
- prev = NULL;
- while(cur) {
+ while (cur) {
if (cur->cctimer2) {
struct timeval tv;
- int time_ms_to_go, time_to_go_min, time_to_go_sec;
+ int time_sec_to_go;
+ int time_to_go_min;
+ int time_to_go_sec;
+
gettimeofday(&tv, NULL);
- time_ms_to_go = (pri->pri_sched[cur->cctimer2].when.tv_sec - tv.tv_sec)*1000;
- time_to_go_min = time_ms_to_go/1000/60;
- time_to_go_sec = (time_ms_to_go-(time_to_go_min*60*1000))/1000;
-
- len += sprintf(buf + len, "%d. Active Q.931 Call: %p cr=%d: (%dmin %dsec)\n",
- ++counter, cur, cur->cr,
+ time_sec_to_go = ctrl->pri_sched[cur->cctimer2].when.tv_sec - tv.tv_sec;
+ if (time_sec_to_go < 0) {
+ time_sec_to_go = 0;
+ }
+ time_to_go_min = time_sec_to_go / 60;
+ time_to_go_sec = time_sec_to_go % 60;
+
+ used = pri_snprintf(buf, used, buf_size,
+ "%u. Active Q.931 Call: %p cr=%d: (%dmin %dsec)\n", ++idx, cur, cur->cr,
time_to_go_min, time_to_go_sec);
} else {
- len += sprintf(buf + len, "%d. Active Q.931 Call: %p cr=%d\n", ++counter, cur, cur->cr);
+ used = pri_snprintf(buf, used, buf_size, "%u. Active Q.931 Call: %p cr=%d\n",
+ ++idx, cur, cur->cr);
}
cur = cur->next;
}
- return strdup(buf);
+ if (buf_size < used) {
+ pri_message(ctrl,
+ "pri_dump_info_str(): Produced output exceeded buffer capacity. (Truncated)\n");
+ }
+ return buf;
}
q931_call *pri_find_call(struct pri *pri, int cr)
Modified: team/group/issue14292/pri_internal.h
URL: http://svn.asterisk.org/svn-view/libpri/team/group/issue14292/pri_internal.h?view=diff&rev=926&r1=925&r2=926
==============================================================================
--- team/group/issue14292/pri_internal.h (original)
+++ team/group/issue14292/pri_internal.h Fri Jun 26 20:44:04 2009
@@ -48,10 +48,8 @@
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 + 256) /* 256 ccT2 timer events*/
-
-#define MAX_TIMERS 32
/*! \brief D channel controller structure */
struct pri {
@@ -100,7 +98,7 @@
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;
More information about the libpri-commits
mailing list