Skip to content

Commit

Permalink
dlgs: adjusted the route blocks allowed for exported functions
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Jul 9, 2020
1 parent cec3e86 commit b4f0b37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/dlgs/dlgs_mod.c
Expand Up @@ -65,11 +65,11 @@ static int dlgs_sip_reply_out(sr_event_param_t *evp);
/* clang-format off */
static cmd_export_t cmds[]={
{"dlgs_init", (cmd_function)w_dlgs_init, 3, fixup_spve_all,
fixup_free_spve_all, REQUEST_ROUTE|BRANCH_ROUTE|ONSEND_ROUTE},
fixup_free_spve_all, REQUEST_ROUTE|BRANCH_ROUTE|ONREPLY_ROUTE|ONSEND_ROUTE},
{"dlgs_update", (cmd_function)w_dlgs_update, 0, 0,
0, REQUEST_ROUTE|BRANCH_ROUTE|ONSEND_ROUTE},
{"dlgs_count", (cmd_function)w_dlgs_count, 3, fixup_spve_all,
fixup_free_spve_all, REQUEST_ROUTE|BRANCH_ROUTE|ONSEND_ROUTE},
fixup_free_spve_all, ANY_ROUTE},
{"dlgs_tags_add", (cmd_function)w_dlgs_tags_add, 1, fixup_spve_null,
fixup_spve_null, ANY_ROUTE},
{"dlgs_tags_rm", (cmd_function)w_dlgs_tags_rm, 1, fixup_spve_null,
Expand Down

0 comments on commit b4f0b37

Please sign in to comment.