blob: 54a586ea9597195b78f982932dcca04f6623a663 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
menu "openser............................ Configurable, free SIP server"
config BR2_PACKAGE_OPENSER
tristate
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
|