aboutsummaryrefslogtreecommitdiffstats
path: root/main/loader.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-05 16:23:44 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-05 16:23:44 +0000
commit198829f2db3d8dcaa76188dc4fe6db06e7b8cbb8 (patch)
treef1786eed45ddc28e1bf43faafd02bcc917747afd /main/loader.c
parent6f39909904c5ce6a5f817477c936469ac89c44ed (diff)
Create a centralized configuration option for silencethreshold
(closes issue #11236) Reported by: philipps Patches: 20080218__bug11236.diff.txt uploaded by Corydon76 (license 14) Tested by: philipps git-svn-id: http://svn.digium.com/svn/asterisk/trunk@106072 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/loader.c')
-rw-r--r--main/loader.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/loader.c b/main/loader.c
index 43d254c6f..d34da9f7d 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -47,6 +47,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/http.h"
#include "asterisk/lock.h"
#include "asterisk/features.h"
+#include "asterisk/dsp.h"
#ifdef DLFCNCOMPAT
#include "asterisk/dlfcn-compat.h"
@@ -249,6 +250,7 @@ static struct reload_classes {
{ "http", ast_http_reload },
{ "logger", logger_reload },
{ "features", ast_features_reload },
+ { "dsp", ast_dsp_reload},
{ NULL, NULL }
};