summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_types.h
diff options
context:
space:
mode:
authorManikandanChockalingam <manikandan.chockalingam@in.bosch.com>2018-05-18 11:17:31 +0530
committerChristoph Lipka <clipka@users.noreply.github.com>2018-05-18 07:47:31 +0200
commitda6eefe5cac244421c5af413c54e420717e11c9e (patch)
treee7eb7745fbc5e0edd3e2bede4d008a05250f1a18 /include/dlt/dlt_types.h
parentf549f5527148b32a15489aae75c9e4557e19cbd4 (diff)
downloadDLT-daemon-da6eefe5cac244421c5af413c54e420717e11c9e.tar.gz
IPC: Unix socket added (#43)
* IPC: Unix socket added The user can select either FIFO or UNIX socket as IPC between user library and daemon through CMakelist option. Socket path configurable for both FIFO and Unix Socket now configurable in CMake Signed-off-by: Christoph Lipka <clipka@de.adit-jv.com> Signed-off-by: ManikandanC <Manikandan.Chockalingam@in.bosch.com>
Diffstat (limited to 'include/dlt/dlt_types.h')
-rw-r--r--include/dlt/dlt_types.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/dlt/dlt_types.h b/include/dlt/dlt_types.h
index 03cd036..2393174 100644
--- a/include/dlt/dlt_types.h
+++ b/include/dlt/dlt_types.h
@@ -178,4 +178,14 @@ typedef enum
typedef float float32_t;
typedef double float64_t;
+/**
+ * Definition Library connection state
+ */
+typedef enum
+{
+ DLT_USER_NOT_CONNECTED = 0,
+ DLT_USER_CONNECTED,
+ DLT_USER_RETRY_CONNECT
+} DltUserConnectionState;
+
#endif /* DLT_TYPES_H */