Compare commits

..

6 Commits
1.4.6 ... 1.4.5

Author SHA1 Message Date
Jason Parker
07d57d3818 Importing files for 1.4.5 release
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.4.5@587 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2008-07-11 16:53:35 +00:00
Jason Parker
e258c073aa Creating tag for the release of libpri-1.4.5
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.4.5@586 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2008-07-11 16:52:30 +00:00
Kevin P. Fleming
120f751076 Creating tag for the release of libpri-1.4.5
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.4.5@582 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2008-07-11 16:45:58 +00:00
Kevin P. Fleming
fccbc0649f Creating tag for the release of libpri-1.4.5
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.4.5@580 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2008-07-11 16:44:39 +00:00
Kevin P. Fleming
59e2d271ee Creating tag for the release of libpri-1.4.5
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.4.5@577 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2008-07-11 16:36:24 +00:00
Kevin P. Fleming
bc0125d4f9 Creating tag for the release of libpri-1.4.5
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.4.5@575 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2008-07-11 16:34:05 +00:00
6 changed files with 6 additions and 17 deletions

View File

@@ -1 +1 @@
1.4.6
1.4.5

View File

@@ -1,14 +1,3 @@
2008-07-22 Kevin P. Fleming <kpfleming@digium.com>
* Libpri 1.4.6 released.
2008-07-22 19:43 +0000 [r589] Kevin P. Fleming <kpfleming@digium.com>
* pri.c, pri_internal.h, q931.c, libpri.h: rename API call and
option (nothing has been released to use it yet so this should be
safe) to be more accurate in describing what it does (closes
issue #13042)
2008-07-11 Jason Parker <jparker@digium.com>
* Libpri 1.4.5 released.

View File

@@ -625,7 +625,7 @@ int pri_progress(struct pri *pri, q931_call *c, int channel, int info);
int pri_proceeding(struct pri *pri, q931_call *c, int channel, int info);
/* Enable inband progress when a RELEASE is received */
void pri_set_inbanddisconnect(struct pri *pri, unsigned int enable);
void pri_set_inbandrelease(struct pri *pri, unsigned int enable);
/* Enslave a PRI to another, so they share the same call list
(and maybe some timers) */

4
pri.c
View File

@@ -782,9 +782,9 @@ void pri_set_overlapdial(struct pri *pri,int state)
pri->overlapdial = state;
}
void pri_set_inbanddisconnect(struct pri *pri, unsigned int enable)
void pri_set_inbandrelease(struct pri *pri, unsigned int enable)
{
pri->acceptinbanddisconnect = (enable != 0);
pri->acceptinbandrelease = (enable != 0);
}
int pri_fd(struct pri *pri)

View File

@@ -65,7 +65,7 @@ struct pri {
int tei;
int protodisc;
unsigned int bri:1;
unsigned int acceptinbanddisconnect:1; /* Should we allow inband progress after RELEASE? */
unsigned int acceptinbandrelease:1; /* Should we allow inband progress after RELEASE? */
/* Q.921 State */
int q921_state;

2
q931.c
View File

@@ -3782,7 +3782,7 @@ int q931_receive(struct pri *pri, q931_h *h, int len)
/* wait for a RELEASE so that sufficient time has passed
for the inband audio to be heard */
if (pri->acceptinbanddisconnect && (c->progressmask & PRI_PROG_INBAND_AVAILABLE))
if (pri->acceptinbandrelease && (c->progressmask & PRI_PROG_INBAND_AVAILABLE))
break;
/* Return such an event */