Skip to content

Commit

Permalink
media_exchange: make nohold parameter integer
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Feb 11, 2020
1 parent b9b23fb commit cf7b222
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/media_exchange/media_exchange.c
Expand Up @@ -74,18 +74,18 @@ static cmd_export_t cmds[] = {
{CMD_PARAM_STR|CMD_PARAM_OPT,fixup_media_leg,0}, /* leg */
{CMD_PARAM_STR|CMD_PARAM_OPT,0,0}, /* body */
{CMD_PARAM_STR|CMD_PARAM_OPT,0,0}, /* headers */
{CMD_PARAM_STR|CMD_PARAM_OPT,0,0}, /* nohold */
{CMD_PARAM_INT|CMD_PARAM_OPT,0,0}, /* nohold */
{0,0,0}},
REQUEST_ROUTE},
{"media_fetch_to_call",(cmd_function)media_fetch_to_call, {
{CMD_PARAM_STR,0,0}, /* callid */
{CMD_PARAM_STR,fixup_media_leg,0}, /* leg */
{CMD_PARAM_STR|CMD_PARAM_OPT,0,0}, /* nohold */
{CMD_PARAM_INT|CMD_PARAM_OPT,0,0}, /* nohold */
{0,0,0}},
REQUEST_ROUTE},
{"media_terminate",(cmd_function)media_terminate, {
{CMD_PARAM_STR,fixup_media_leg,0}, /* leg */
{CMD_PARAM_STR|CMD_PARAM_OPT,0,0}, /* nohold */
{CMD_PARAM_INT|CMD_PARAM_OPT,0,0}, /* nohold */
{0,0,0}},
REQUEST_ROUTE},
{0,0,{{0,0,0}},0}
Expand Down

0 comments on commit cf7b222

Please sign in to comment.