Module: kamailio
Branch: master
Commit: f6744a8e3c452be6405dd6948738ff6377def2a7
URL:
https://github.com/kamailio/kamailio/commit/f6744a8e3c452be6405dd6948738ff6…
Author: alezzandro <alezzandro(a)gmail.com>
Committer: alezzandro <alezzandro(a)gmail.com>
Date: 2015-01-09T16:53:35+01:00
dispatcher: Fixed default values for options probing_threshold and
inactive_probing_threshold, setting them from 3 to 1
---
Modified: modules/dispatcher/config.c
---
Diff:
https://github.com/kamailio/kamailio/commit/f6744a8e3c452be6405dd6948738ff6…
Patch:
https://github.com/kamailio/kamailio/commit/f6744a8e3c452be6405dd6948738ff6…
---
diff --git a/modules/dispatcher/config.c b/modules/dispatcher/config.c
index 25e0d02..92a1885 100644
--- a/modules/dispatcher/config.c
+++ b/modules/dispatcher/config.c
@@ -31,8 +31,8 @@
#include "config.h"
struct cfg_group_dispatcher default_dispatcher_cfg = {
- 3, /* Probing threshold */
- 3, /* Inactive threshold */
+ 1, /* Probing threshold */
+ 1, /* Inactive threshold */
{0,0} /* reply codes */
};