add inbound/outbound separation to pcre

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1042 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-04-04 17:59:07 +00:00
parent 3208bbfb80
commit ef4556479b
1 changed files with 12 additions and 0 deletions

View File

@ -56,6 +56,7 @@ static switch_caller_extension *dialplan_hunt(switch_core_session *session)
pcre *re = NULL;
int match_count = 0;
int ovector[30];
int skip = 0;
channel = switch_core_session_get_channel(session);
caller_profile = switch_channel_get_caller_profile(channel);
@ -75,6 +76,17 @@ static switch_caller_extension *dialplan_hunt(switch_core_session *session)
exten_name = cfg.category;
cleanre();
match_count = 0;
skip = 0;
if (!strcasecmp(exten_name, "outbound") && !switch_channel_test_flag(channel, CF_OUTBOUND)) {
skip = 1;
} else if (!strcasecmp(exten_name, "inbound") && switch_channel_test_flag(channel, CF_OUTBOUND)) {
skip = 1;
}
}
if (skip) {
continue;
}
if (!strcasecmp(var, "regex")) {