dect
/
asterisk
Archived
13
0
Fork 0

It would help if we actually parsed the ss7_explicitacm option in the config file...

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@128125 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2008-07-05 03:39:07 +00:00
parent c102a4e3ba
commit a51a16cca8
1 changed files with 11 additions and 0 deletions

View File

@ -14376,6 +14376,17 @@ static int process_dahdi(struct dahdi_chan_conf *confp, const char *cat, struct
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 */