The special applications:
- skinny-process tells skinny to process the call (route, set call forwarding, ...)
- skinny-drop tells skinny to drop the call
- - skinny-wait tells skinny to wait 'data' seconds for more numbers before drop
+ - skinny-wait tells skinny to wait for more digits
-->
<!-- http://wiki.freeswitch.org/wiki/Mod_skinny -->
<include>
<context name="skinny-patterns">
<!--
- Wait 10 seconds for another digit by default
+ Wait for another digit by default
-->
<extension name="Default">
<condition>
- <action application="skinny-wait" data="10"/>
+ <action application="skinny-wait" />
</condition>
</extension>
The special applications:
- skinny-process tells skinny to process the call (route, set call forwarding, ...)
- skinny-drop tells skinny to drop the call
- - skinny-wait tells skinny to wait 'data' seconds for more numbers before drop
+ - skinny-wait tells skinny to wait for more digits
-->
<!-- http://wiki.freeswitch.org/wiki/Mod_skinny -->
<include>
<context name="skinny-patterns">
<!--
- Wait 10 seconds for another digit by default
+ Wait for another digit by default
-->
<extension name="Default">
<condition>
- <action application="skinny-wait" data="10"/>
+ <action application="skinny-wait" />
</condition>
</extension>
case SKINNY_ACTION_WAIT:
/* for now, wait forever */
switch_channel_set_state(channel, CS_HIBERNATE);
+ if (!zstr(data)) {
+ switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_WARNING, "skinny-wait doesn't support timeout yet (See #FS-477)");
+ }
break;
case SKINNY_ACTION_DROP:
default: