mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-07 22:03:50 +00:00
move gdbinit to support-d
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11986 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
f8fee30b27
commit
d059925b6e
@ -703,7 +703,6 @@ SWITCH_STANDARD_APP(group_function)
|
|||||||
|
|
||||||
#define LIMIT_USAGE "<realm> <id> [<max> [number [dialplan [context]]]]"
|
#define LIMIT_USAGE "<realm> <id> [<max> [number [dialplan [context]]]]"
|
||||||
#define LIMIT_DESC "limit access to a resource and transfer to an extension if the limit is exceeded"
|
#define LIMIT_DESC "limit access to a resource and transfer to an extension if the limit is exceeded"
|
||||||
static char *limit_def_xfer_exten = "limit_exceeded";
|
|
||||||
|
|
||||||
SWITCH_STANDARD_APP(limit_function)
|
SWITCH_STANDARD_APP(limit_function)
|
||||||
{
|
{
|
||||||
@ -748,7 +747,7 @@ SWITCH_STANDARD_APP(limit_function)
|
|||||||
if (argc >= 4) {
|
if (argc >= 4) {
|
||||||
xfer_exten = argv[3];
|
xfer_exten = argv[3];
|
||||||
} else {
|
} else {
|
||||||
xfer_exten = limit_def_xfer_exten;
|
xfer_exten = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -764,7 +763,7 @@ SWITCH_STANDARD_APP(limit_function)
|
|||||||
switch_safe_free(sql);
|
switch_safe_free(sql);
|
||||||
got = atoi(buf);
|
got = atoi(buf);
|
||||||
|
|
||||||
if (max >= 0 && got + 1 > max) {
|
if (max >= 0 && xfer_exten && got + 1 > max) {
|
||||||
switch_ivr_session_transfer(session, xfer_exten, argv[4], argv[5]);
|
switch_ivr_session_transfer(session, xfer_exten, argv[4], argv[5]);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user