Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(71) |
Nov
(241) |
Dec
(143) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(210) |
Feb
(263) |
Mar
(214) |
Apr
(290) |
May
(203) |
Jun
(160) |
Jul
(128) |
Aug
(158) |
Sep
(376) |
Oct
(234) |
Nov
(227) |
Dec
(216) |
2009 |
Jan
(99) |
Feb
(151) |
Mar
(234) |
Apr
(143) |
May
(271) |
Jun
(244) |
Jul
(173) |
Aug
(124) |
Sep
(246) |
Oct
(178) |
Nov
(85) |
Dec
(77) |
2010 |
Jan
(101) |
Feb
(79) |
Mar
(92) |
Apr
(134) |
May
(125) |
Jun
(121) |
Jul
(61) |
Aug
(70) |
Sep
(86) |
Oct
(81) |
Nov
(65) |
Dec
(75) |
2011 |
Jan
(110) |
Feb
(119) |
Mar
(267) |
Apr
(154) |
May
(296) |
Jun
(177) |
Jul
(149) |
Aug
(124) |
Sep
(120) |
Oct
(116) |
Nov
(99) |
Dec
(121) |
2012 |
Jan
(78) |
Feb
(161) |
Mar
(323) |
Apr
(154) |
May
(190) |
Jun
(207) |
Jul
(176) |
Aug
(165) |
Sep
(137) |
Oct
(85) |
Nov
(112) |
Dec
(100) |
2013 |
Jan
(341) |
Feb
(102) |
Mar
(240) |
Apr
(216) |
May
(233) |
Jun
(226) |
Jul
(139) |
Aug
(192) |
Sep
(183) |
Oct
(211) |
Nov
(220) |
Dec
(110) |
2014 |
Jan
(203) |
Feb
(205) |
Mar
(100) |
Apr
(178) |
May
(194) |
Jun
(249) |
Jul
(136) |
Aug
(241) |
Sep
(226) |
Oct
(200) |
Nov
(94) |
Dec
(46) |
2015 |
Jan
(94) |
Feb
(74) |
Mar
(89) |
Apr
(78) |
May
(65) |
Jun
(70) |
Jul
(113) |
Aug
(176) |
Sep
(140) |
Oct
(154) |
Nov
(99) |
Dec
(115) |
2016 |
Jan
(102) |
Feb
(69) |
Mar
(97) |
Apr
(53) |
May
(42) |
Jun
(13) |
Jul
(42) |
Aug
(30) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
(9) |
2
(6) |
3
(1) |
4
(6) |
5
|
6
(9) |
7
(10) |
8
(7) |
9
(5) |
10
(5) |
11
(3) |
12
|
13
|
14
(2) |
15
(7) |
16
|
17
(5) |
18
(7) |
19
(5) |
20
|
21
(5) |
22
(9) |
23
(4) |
24
(2) |
25
|
26
|
27
|
28
(1) |
29
(3) |
30
(10) |
|
|
|
From: <rjongbloed@us...> - 2010-06-28 09:35:51
|
Revision: 24538 http://opalvoip.svn.sourceforge.net/opalvoip/?rev=24538&view=rev Author: rjongbloed Date: 2010-06-28 09:35:45 +0000 (Mon, 28 Jun 2010) Log Message: ----------- Fixed "internal" transfer (e.g. pc: to ivr:) in "C" API. Fixed ivr only configuration for "C" API. Modified Paths: -------------- opal/trunk/src/opal/opal_c.cxx Modified: opal/trunk/src/opal/opal_c.cxx =================================================================== --- opal/trunk/src/opal/opal_c.cxx 2010-06-24 05:10:36 UTC (rev 24537) +++ opal/trunk/src/opal/opal_c.cxx 2010-06-28 09:35:45 UTC (rev 24538) @@ -836,9 +836,10 @@ #if OPAL_IVR - if (options.Find("ivr") != P_MAX_INDEX) { - new OpalIVREndPoint_C(*this); - AddRouteEntry(".*:#=ivr:"); // A hash from anywhere goes to IVR + PINDEX ivrPos = options.Find("ivr"); + if (ivrPos < defUserPos) { + defUser = "ivr:"; + defUserPos = localPos; } #endif @@ -899,6 +900,13 @@ AddRouteEntry("local:.*=" + defProto + ":<da>"); } +#if OPAL_IVR + if (ivrPos != P_MAX_INDEX) { + new OpalIVREndPoint_C(*this); + AddRouteEntry("ivr:.*=" + defProto + ":<da>"); + } +#endif + return true; } @@ -1744,7 +1752,7 @@ if (connection->GetPhase() < OpalConnection::ConnectedPhase) connection->ForwardCall(command.m_param.m_callSetUp.m_partyB); else - connection->TransferConnection(command.m_param.m_callSetUp.m_partyB); + call->Transfer(command.m_param.m_callSetUp.m_partyB, connection); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |