summaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
authorPhong Tran <tranmanphong@gmail.com>2019-12-11 06:29:59 +0700
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2019-12-11 08:29:59 +0900
commit31e83e1c32c6e400af66394dce339b3c34599974 (patch)
treed2329ae7584fac6517e7d09dd1eb60e96e7525b0 /src/daemon
parent1cccecfc238b022842771d397bc482d66c587f55 (diff)
downloadDLT-daemon-31e83e1c32c6e400af66394dce339b3c34599974.tar.gz
dlt.conf: suppress the warnings udp multicast (#197)
There are some warnings while running dlt-daemon: $dlt-daemon Unknown option: UDPConnectionSetup=1 Unknown option: UDPMulticastIPAddress=225.0.0.37 Unknown option: UDPMulticastIPPort=3491 cause the WITH_UDP_CONNECTION is not enabled by default (c9d1ba4b). The configuration for this feature should be sync. Signed-off-by: Phong Tran <tranmanphong@gmail.com>
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/dlt.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/dlt.conf b/src/daemon/dlt.conf
index ab5883f..091f0d6 100644
--- a/src/daemon/dlt.conf
+++ b/src/daemon/dlt.conf
@@ -188,13 +188,13 @@ ControlSocketPath = /tmp/dlt-ctrl.sock
# UDP Multicast Configuration #
##############################################################################
# Enable UDP connection support for daemon(Control Message/Multicast is enabled)
-UDPConnectionSetup = 1
+# UDPConnectionSetup = 1
# UDP multicast address(default:225.0.0.37)
-UDPMulticastIPAddress = 225.0.0.37
+# UDPMulticastIPAddress = 225.0.0.37
# UDP multicast port(default:3491)
-UDPMulticastIPPort = 3491
+# UDPMulticastIPPort = 3491
##############################################################################
# BindAddress Limitation #