Skip to content

Commit

Permalink
Disable support for DNS SRV by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralight committed Sep 22, 2015
1 parent 0d449d3 commit 8ecb929
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit 8ecb929

Please sign in to comment.