From 586fe44c5d8ee35d809dbe0ada0640b0773f4f68 Mon Sep 17 00:00:00 2001 From: Ivan Myalkin Date: Fri, 28 Oct 2016 14:02:15 +0300 Subject: [PATCH] dialog: removing unused DMQ variables Removing unused variables, early created for DMQ sync purposes. --- modules/dialog/dialog.c | 5 ----- modules/dialog/dlg_hash.c | 2 -- 2 files changed, 7 deletions(-) diff --git a/modules/dialog/dialog.c b/modules/dialog/dialog.c index f3abb04e5a0..bbe8e6f108f 100644 --- a/modules/dialog/dialog.c +++ b/modules/dialog/dialog.c @@ -109,8 +109,6 @@ static int _dlg_track_cseq_updates = 0; int dlg_ka_failed_limit = 1; int dlg_enable_dmq = 0; -int dlg_id_offset = 1; -int dlg_id_increment = 1; int dlg_event_rt[DLG_EVENTRT_MAX]; @@ -302,9 +300,6 @@ static param_export_t mod_params[]={ { "db_skip_load", INT_PARAM, &db_skip_load }, { "ka_failed_limit", INT_PARAM, &dlg_ka_failed_limit }, { "enable_dmq", INT_PARAM, &dlg_enable_dmq }, - { "id_offset", INT_PARAM, &dlg_id_offset }, - { "id_increment", INT_PARAM, &dlg_id_increment }, - { 0,0,0 } }; diff --git a/modules/dialog/dlg_hash.c b/modules/dialog/dlg_hash.c index aede71569e6..7652560d086 100644 --- a/modules/dialog/dlg_hash.c +++ b/modules/dialog/dlg_hash.c @@ -48,8 +48,6 @@ extern int dlg_ka_interval; extern int dlg_enable_dmq; -extern int dlg_id_offset; -extern int dlg_id_increment; /*! global dialog table */ struct dlg_table *d_table = 0;