Disable support for DNS SRV by default.

pull/139/head
Roger A. Light 10 years ago
parent 0d449d31b8
commit 8ecb9291ab

@ -77,7 +77,7 @@ if (${WITH_SOCKS} STREQUAL ON)
add_definitions("-DWITH_SOCKS")
endif (${WITH_SOCKS} STREQUAL ON)
option(WITH_SRV "Include SRV lookup support?" ON)
option(WITH_SRV "Include SRV lookup support?" OFF)
# ========================================
# Include projects

@ -29,6 +29,7 @@ Broker:
Client library:
- Outgoing messages with QoS>1 are no longer retried after a timeout period.
Messages will be retried when a client reconnects.
- DNS-SRV support is now disabled by default.
Client:
- Add -x to mosquitto_sub for printing the payload in hexadecimal format.

@ -62,7 +62,7 @@ WITH_SYS_TREE:=yes
WITH_SYSTEMD:=no
# Build with SRV lookup support.
WITH_SRV:=yes
WITH_SRV:=no
# Build using libuuid for clientid generation (Linux only - please report if
# supported on your platform).

Loading…
Cancel
Save