[svn-commits] transnexus: trunk r246382 - in /trunk: CHANGES UPGRADE.txt apps/app_osplookup.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Feb 12 02:30:09 CST 2010
Author: transnexus
Date: Fri Feb 12 02:30:05 2010
New Revision: 246382
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=246382
Log:
Updated doc for OSP lookup application.
Modified:
trunk/CHANGES
trunk/UPGRADE.txt
trunk/apps/app_osplookup.c
Modified: trunk/CHANGES
URL: http://svnview.digium.com/svn/asterisk/trunk/CHANGES?view=diff&rev=246382&r1=246381&r2=246382
==============================================================================
--- trunk/CHANGES (original)
+++ trunk/CHANGES Fri Feb 12 02:30:05 2010
@@ -133,6 +133,9 @@
during the Dial will be set to the argument passed to the 'f' option.
* Dial now inherits the GOSUB_RETVAL from the peer, when the U() option runs a
Gosub on the peer.
+ * The OSP lookup application adds in/outbound network ID, optional security,
+ number portability, QoS reporting, destination IP port, custom info and service
+ type features.
Dialplan Functions
------------------
Modified: trunk/UPGRADE.txt
URL: http://svnview.digium.com/svn/asterisk/trunk/UPGRADE.txt?view=diff&rev=246382&r1=246381&r2=246382
==============================================================================
--- trunk/UPGRADE.txt (original)
+++ trunk/UPGRADE.txt Fri Feb 12 02:30:05 2010
@@ -66,6 +66,14 @@
fixed so there may be arguments specified in incorrect ways that were
working that will no longer work.
Please see doc/externalivr.txt for details.
+
+* OSP lookup application changes following variable names:
+ OSPPEERIP to OSPINPEERIP
+ OSPTECH to OSPOUTTECH
+ OSPDEST to OSPDESTINATION
+ OSPCALLING to OSPOUTCALLING
+ OSPCALLED to OSPOUTCALLED
+ OSPRESULTS to OSPDESTREMAILS
From 1.6.1 to 1.6.2:
Modified: trunk/apps/app_osplookup.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_osplookup.c?view=diff&rev=246382&r1=246381&r2=246382
==============================================================================
--- trunk/apps/app_osplookup.c (original)
+++ trunk/apps/app_osplookup.c Fri Feb 12 02:30:05 2010
@@ -221,6 +221,9 @@
</variable>
<variable name="OSPOUTCALLIDTYPES">
<para>The outbound Call-ID types.</para>
+ </variable>
+ <variable name="OSPOUTCALLID">
+ <para>The outbound Call-ID. Only for H.323.</para>
</variable>
<variable name="OSPDIALSTR">
<para>The outbound Dial command string.</para>
@@ -908,7 +911,7 @@
* \param name OSP provider context name
* \param trans OSP transaction handle, output
* \param source Source of provider, output
- * \param sourcesize Size of source buffer, in
+ * \param srcsize Size of source buffer, in
* \return OSK_OK Success, OSK_FAILED Failed, OSP_ERROR Error
*/
static int osp_create_transaction(
@@ -2910,7 +2913,6 @@
osp_security = 1;
}
ast_debug(1, "OSP: osp_security '%d'\n", osp_security);
-
if ((cvar = ast_variable_retrieve(cfg, OSP_GENERAL_CAT, "tokenformat"))) {
if ((sscanf(cvar, "%30d", &ivar) == 1) &&
More information about the svn-commits
mailing list