[svn-commits] mattf: trunk r128125 - /trunk/channels/chan_dahdi.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Jul 4 22:39:07 CDT 2008
Author: mattf
Date: Fri Jul 4 22:39:07 2008
New Revision: 128125
URL: http://svn.digium.com/view/asterisk?view=rev&rev=128125
Log:
It would help if we actually parsed the ss7_explicitacm option in the config file...
Modified:
trunk/channels/chan_dahdi.c
Modified: trunk/channels/chan_dahdi.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_dahdi.c?view=diff&rev=128125&r1=128124&r2=128125
==============================================================================
--- trunk/channels/chan_dahdi.c (original)
+++ trunk/channels/chan_dahdi.c Fri Jul 4 22:39:07 2008
@@ -14376,6 +14376,17 @@
res = linkset_addsigchan(sigchan);
if (res < 0)
return -1;
+
+ } else if (!strcasecmp(v->name, "ss7_explicitacm")) {
+ struct dahdi_ss7 *link;
+ link = ss7_resolve_linkset(cur_linkset);
+ if (!link) {
+ ast_log(LOG_ERROR, "Invalid linkset number. Must be between 1 and %d\n", NUM_SPANS + 1);
+ return -1;
+ }
+ if (ast_true(v->value))
+ link->flags |= LINKSET_FLAG_EXPLICITACM;
+
#endif /* HAVE_SS7 */
} else if (!strcasecmp(v->name, "cadence")) {
/* setup to scan our argument */
More information about the svn-commits
mailing list