summaryrefslogtreecommitdiff
path: root/src/daemon/udp_connection/dlt_daemon_udp_socket.h
diff options
context:
space:
mode:
authorSunil-K-S <54260601+Sunil-K-S@users.noreply.github.com>2019-08-23 10:01:08 +0530
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2019-08-23 13:31:08 +0900
commit976746f28e1c4c0a6ee24bf3f94ce66b890b3898 (patch)
tree2c617c4ee6f9a87b32b6e894f05f47361d907121 /src/daemon/udp_connection/dlt_daemon_udp_socket.h
parentd6baeb794e727a9194bfb28bff3c185e6d4fe631 (diff)
downloadDLT-daemon-976746f28e1c4c0a6ee24bf3f94ce66b890b3898.tar.gz
UDP Multicast implementation (#155)
The feature can be enabled by setting WITH_UDP_CONNECTION to ON. Signed-off-by: sunil.s <sunil.s@lge.com>
Diffstat (limited to 'src/daemon/udp_connection/dlt_daemon_udp_socket.h')
-rw-r--r--src/daemon/udp_connection/dlt_daemon_udp_socket.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/daemon/udp_connection/dlt_daemon_udp_socket.h b/src/daemon/udp_connection/dlt_daemon_udp_socket.h
new file mode 100644
index 0000000..96d33aa
--- /dev/null
+++ b/src/daemon/udp_connection/dlt_daemon_udp_socket.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright (c) 2019 LG Electronics Inc.
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This file is part of GENIVI Project DLT - Diagnostic Log and Trace.
+ * If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * For further information see http://www.genivi.org/.
+ */
+
+/*!
+ * \author
+ * Guruprasad KN <guruprasad.kn@lge.com>
+ * Sachin Sudhakar Shetty <sachin.shetty@lge.com>
+ * Sunil Kovila Sampath <sunil.s@lge.com>
+ *
+ * \Copyright (c) 2019 LG Electronics Inc.
+ * License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
+ *
+ * \file dlt_daemon_udp_socket.h
+ */
+
+#ifndef DLT_DAEMON_UDP_SOCKET_H
+#define DLT_DAEMON_UDP_SOCKET_H
+
+#include "dlt-daemon.h"
+
+DltReturnValue dlt_daemon_udp_connection_setup(DltDaemonLocal *daemon_local);
+void dlt_daemon_udp_dltmsg_multicast(void *data1, int size1, void *data2, int size2,
+ int verbose);
+#endif /* DLT_DAEMON_UDP_SOCKET_H */