From cc80ab78c64c8225c38e668e91b4d506749a8d9b Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Wed, 22 Sep 2010 15:32:13 +0200 Subject: [PATCH] removed obsolete user_prefix_separator --- core/AmConfig.cpp | 4 ---- core/AmConfig.h | 2 -- 2 files changed, 6 deletions(-) diff --git a/core/AmConfig.cpp b/core/AmConfig.cpp index a966f5fb..83621961 100644 --- a/core/AmConfig.cpp +++ b/core/AmConfig.cpp @@ -62,7 +62,6 @@ unsigned int AmConfig::MaxShutdownTime = DEFAULT_MAX_SHUTDOWN_TIME; string AmConfig::LocalIP = ""; string AmConfig::PublicIP = ""; -string AmConfig::PrefixSep = PREFIX_SEPARATOR; int AmConfig::RtpLowPort = RTP_LOWPORT; int AmConfig::RtpHighPort = RTP_HIGHPORT; int AmConfig::SessionProcessorThreads = NUM_SESSION_PROCESSORS; @@ -421,9 +420,6 @@ int AmConfig::readConfiguration() MaxShutdownTime = cfg.getParameterInt("max_shutdown_time", DEFAULT_MAX_SHUTDOWN_TIME); - // user_prefix_separator - PrefixSep = cfg.getParameter("user_prefix_separator",PrefixSep); - // rtp_low_port if(cfg.hasParameter("rtp_low_port")){ if(!setRtpLowPort(cfg.getParameter("rtp_low_port"))){ diff --git a/core/AmConfig.h b/core/AmConfig.h index 623a826d..c6b1ee8b 100644 --- a/core/AmConfig.h +++ b/core/AmConfig.h @@ -84,8 +84,6 @@ struct AmConfig * bind to local IP, but advertise public IP. */ static string PublicIP; - /** Separator character for uri application prefix (ex: voicemail+jiri@iptel.org) */ - static string PrefixSep; /** Lowest local RTP port */ static int RtpLowPort; /** Highest local RTP port */