From 976746f28e1c4c0a6ee24bf3f94ce66b890b3898 Mon Sep 17 00:00:00 2001 From: Sunil-K-S <54260601+Sunil-K-S@users.noreply.github.com> Date: Fri, 23 Aug 2019 10:01:08 +0530 Subject: UDP Multicast implementation (#155) The feature can be enabled by setting WITH_UDP_CONNECTION to ON. Signed-off-by: sunil.s --- src/daemon/dlt-daemon.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/daemon/dlt-daemon.h') diff --git a/src/daemon/dlt-daemon.h b/src/daemon/dlt-daemon.h index 4702b69..2520988 100644 --- a/src/daemon/dlt-daemon.h +++ b/src/daemon/dlt-daemon.h @@ -157,6 +157,11 @@ typedef struct unsigned long RingbufferMaxSize; unsigned long RingbufferStepSize; unsigned long daemonFifoSize; +#ifdef UDP_CONNECTION_SUPPORT + int UDPConnectionSetup; /* enable/disable the UDP connection */ + char UDPMulticastIPAddress[MULTICASTIP_MAX_SIZE]; /* multicast ip addres */ + int UDPMulticastIPPort; /* multicast port */ +#endif } DltDaemonLocal; typedef struct -- cgit v1.2.1