diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-17 10:35:07 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-17 10:35:07 +0000 |
commit | 867ecd10f5d3e5c93d889e911a82115eb974eb26 (patch) | |
tree | 476f41244ddb44480980a7e3388ba9b048f2d5d6 /package/openser/Config.in | |
parent | 0bcdd9dc8f86293cb81b4f69a0f3b75fd95ccdb1 (diff) |
Updated to latest upstream version: 1.0.1
Added support for multiple modules, including accounting, mysql, sms, xlog ...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3389 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openser/Config.in')
-rw-r--r-- | package/openser/Config.in | 99 |
1 files changed, 98 insertions, 1 deletions
diff --git a/package/openser/Config.in b/package/openser/Config.in index b1aa99aa6b..54a586ea95 100644 --- a/package/openser/Config.in +++ b/package/openser/Config.in @@ -1,7 +1,104 @@ +menu "openser............................ Configurable, free SIP server" + config BR2_PACKAGE_OPENSER tristate - prompt "openser........................... Configurable, free SIP server" + prompt "openser.......................... Configurable, free SIP server" default m if CONFIG_DEVEL help Open SIP Express Router (OpenSER) is a high-performance, configurable, free SIP server. + +config BR2_PACKAGE_OPENSER_MOD_MYSQL + prompt "openser-mod-mysql................ MySQL support" + tristate + default m + select BR2_COMPILE_MYSQL + select BR2_PACKAGE_OPENSER + help + Enable MySQL support + +config BR2_PACKAGE_OPENSER_MOD_AUTH + prompt "openser-mod-auth................. Authentication support" + tristate + default m + select BR2_PACKAGE_OPENSER + help + Enable authentication support + +config BR2_PACKAGE_OPENSER_MOD_AUTH_DB + prompt "openser-mod-auth-db.............. Authentication with database support" + tristate + default m + select BR2_PACKAGE_OPENSER + select BR2_PACKAGE_OPENSER_MOD_AUTH + help + Enable authentication with database support + +config BR2_PACKAGE_OPENSER_MOD_AUTH_RADIUS + prompt "openser-mod-auth-radius.......... Authentication with RADIUS support" + tristate + default m + select BR2_PACKAGE_OPENSER + select BR2_PACAKGE_LIBRADIUSCLIENT_NG + help + Authentication against RADIUS + +config BR2_PACKAGE_OPENSER_MOD_AVPOPS + prompt "openser-mod-avpops............... AVP options support" + tristate + default m + select BR2_PACKAGE_OPENSER + help + Enable AVP options support + + +config BR2_PACKAGE_OPENSER_MOD_MEDIAPROXY + prompt "openser-mod-mediaproxy........... Mediaproxy support" + tristate + default m + select BR2_PACKAGE_OPENSER + help + Enable mediaproxy support + +config BR2_PACKAGE_OPENSER_MOD_LCR + prompt "openser-mod-lcr.................. Least Cost Routing support" + tristate + default m + select BR2_PACKAGE_OPENSER + select BR2_PACKAGE_OPENSER_MOD_MYSQL + help + Enable Least Cost Routing support + +config BR2_PACKAGE_OPENSER_MOD_NATHELPER + prompt "openser-mod-nathelper............ NAT helper support" + tristate + default m + select BR2_PACKAGE_OPENSER + help + NAT helper support + +config BR2_PACKAGE_OPENSER_MOD_SMS + prompt "openser-mod-sms.................. SMS support" + tristate + default m + select BR2_PACKAGE_OPENSER + help + SMS support + +config BR2_PACKAGE_OPENSER_MOD_SPEEDDIAL + prompt "openser-mod-speeddial............ Speed dial support" + tristate + default m + select BR2_PACKAGE_OPENSER + help + Speed Dial support + +config BR2_PACKAGE_OPENSER_MOD_XLOG + prompt "openser-mod-xlog................. Logging support" + tristate + default m + select BR2_PACKAGE_OPENSER + help + Logging support + +endmenu |