Skip to content

Commit

Permalink
rtpproxy: fix parameter types for rtpproxy_stream2uac/uas()
Browse files Browse the repository at this point in the history
(cherry picked from commit 5bb4e9c)
  • Loading branch information
rvlad-patrascu committed Apr 23, 2019
1 parent 20fbdd2 commit f5cf2a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/rtpproxy/rtpproxy.c
Expand Up @@ -401,14 +401,14 @@ static cmd_export_t cmds[] = {
{CMD_PARAM_VAR | CMD_PARAM_OPT, 0, 0}, {0,0,0}},
REQUEST_ROUTE|ONREPLY_ROUTE|FAILURE_ROUTE|BRANCH_ROUTE|LOCAL_ROUTE},
{"rtpproxy_stream2uac", (cmd_function)rtpproxy_stream2uac4_f, {
{CMD_PARAM_STR | CMD_PARAM_OPT, 0, 0},
{CMD_PARAM_INT | CMD_PARAM_OPT, 0, 0},
{CMD_PARAM_STR, 0, 0},
{CMD_PARAM_INT, 0, 0},
{CMD_PARAM_INT | CMD_PARAM_OPT, fixup_set_id, fixup_free_set_id},
{CMD_PARAM_VAR | CMD_PARAM_OPT, 0, 0}, {0,0,0}},
REQUEST_ROUTE | ONREPLY_ROUTE},
{"rtpproxy_stream2uas", (cmd_function)rtpproxy_stream2uas4_f, {
{CMD_PARAM_STR | CMD_PARAM_OPT, 0, 0},
{CMD_PARAM_INT | CMD_PARAM_OPT, 0, 0},
{CMD_PARAM_STR, 0, 0},
{CMD_PARAM_INT, 0, 0},
{CMD_PARAM_INT | CMD_PARAM_OPT, fixup_set_id, fixup_free_set_id},
{CMD_PARAM_VAR | CMD_PARAM_OPT, 0, 0}, {0,0,0}},
REQUEST_ROUTE | ONREPLY_ROUTE},
Expand Down

0 comments on commit f5cf2a3

Please sign in to comment.