Disable support for DNS SRV by default.

This commit is contained in:
Roger A. Light 2015-09-22 15:28:28 +01:00
parent 0d449d31b8
commit 8ecb9291ab
3 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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.

View File

@ -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).