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

menuconfig MOSQUITTO
	tristate
	prompt "mosquitto                     "
	select OPENSSL	if MOSQUITTO_TLS
	select C_ARES	if MOSQUITTO_SRV
	select LIBUUID	if MOSQUITTO_UUID
	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"

config MOSQUITTO_UUID
	bool
	prompt "UUID as client id"

endif

# vim: ft=kconfig noet tw=72