summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_socket.c
diff options
context:
space:
mode:
authorAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2013-12-18 08:39:27 +0100
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2014-01-10 07:16:11 +0100
commitb7a37dc39a2a975e594bdb554e752c8ed563673e (patch)
tree95e127996f5ded7515312cd52af4ba49d54251aa /src/daemon/dlt_daemon_socket.c
parent4094928eb19e7b088c50c166d06771893e7a7c05 (diff)
downloadDLT-daemon-b7a37dc39a2a975e594bdb554e752c8ed563673e.tar.gz
Centralised send function to client. Introduced connection state to dlt daemon.
Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
Diffstat (limited to 'src/daemon/dlt_daemon_socket.c')
-rw-r--r--src/daemon/dlt_daemon_socket.c90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/daemon/dlt_daemon_socket.c b/src/daemon/dlt_daemon_socket.c
new file mode 100644
index 0000000..6bb9236
--- /dev/null
+++ b/src/daemon/dlt_daemon_socket.c
@@ -0,0 +1,90 @@
+/* @licence app begin@
+ * Copyright (C) 2012 BMW AG
+ *
+ * This file is part of GENIVI Project Dlt - Diagnostic Log and Trace console apps.
+ *
+ * Contributions are licensed to the GENIVI Alliance under one or more
+ * Contribution License Agreements.
+ *
+ * \copyright
+ * This Source Code Form is subject to the terms of the
+ * Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
+ * this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ *
+ * \author Alexander Wenzel <alexander.aw.wenzel@bmw.de> BMW 2011-2012
+ *
+ * \file dlt_daemon_socket.c
+ * For further information see http://www.genivi.org/.
+ * @licence end@
+ */
+
+/*******************************************************************************
+** **
+** SRC-MODULE: dlt_daemon_socket.c **
+** **
+** TARGET : linux **
+** **
+** PROJECT : DLT **
+** **
+** AUTHOR : Alexander Wenzel Alexander.AW.Wenzel@bmw.de **
+** **
+** PURPOSE : **
+** **
+** REMARKS : **
+** **
+** PLATFORM DEPENDANT [yes/no]: yes **
+** **
+** TO BE CHANGED BY USER [yes/no]: no **
+** **
+*******************************************************************************/
+
+/*******************************************************************************
+** Author Identity **
+********************************************************************************
+** **
+** Initials Name Company **
+** -------- ------------------------- ---------------------------------- **
+** aw Alexander Wenzel BMW **
+*******************************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <syslog.h>
+#include <errno.h>
+#include <unistd.h>
+#include <fcntl.h>
+
+#include <sys/types.h> /* send() */
+#include <sys/socket.h> /* send() */
+
+#include "dlt_types.h"
+
+#include "dlt_daemon_socket.h"
+
+int dlt_daemon_socket_send(int sock,void* data1,int size1,void* data2,int size2,char serialheader)
+{
+ /* Optional: Send serial header, if requested */
+ if (serialheader)
+ {
+ if ( 0 > send(sock, dltSerialHeader,sizeof(dltSerialHeader),0) )
+ return -1;
+
+ }
+
+ /* Send data */
+ if(data1 && size1>0)
+ {
+ if (0 > send(sock, data1,size1,0))
+ return -1;
+ }
+
+ if(data2 && size2>0)
+ {
+ if (0 > send(sock, data2,size2,0))
+ return -1;
+ }
+
+ return 0;
+}