summaryrefslogtreecommitdiffstats
path: root/rules/mosquitto.in
blob: 7ed65bf34ec2284e1999fa3ef157f35ddaa860cf (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
## SECTION=networking

menuconfig MOSQUITTO
	tristate
	prompt "mosquitto                     "
	select OPENSSL	if MOSQUITTO_TLS
	select C_ARES	if MOSQUITTO_SRV
	help
	  Open source MQTT message broker, library, and client.

if MOSQUITTO

config MOSQUITTO_BROKER
	bool
	prompt "Broker"

config MOSQUITTO_CLIENTS
	bool
	prompt "Clients"

config MOSQUITTO_TLS
	bool
	prompt "TLS support"

config MOSQUITTO_SRV
	bool
	prompt "SRV lookup support"

endif

# vim: ft=kconfig noet tw=72