From e387e0d12020f7159dc2b3c53e24dc6bb58de4b9 Mon Sep 17 00:00:00 2001 From: Alexander Wenzel Date: Mon, 2 Dec 2013 09:02:28 +0100 Subject: Added conntection info and unregister context control messages. Signed-off-by: Alexander Wenzel --- include/dlt/dlt_common.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'include/dlt/dlt_common.h') diff --git a/include/dlt/dlt_common.h b/include/dlt/dlt_common.h index b0b62eb..7f205c9 100755 --- a/include/dlt/dlt_common.h +++ b/include/dlt/dlt_common.h @@ -489,6 +489,29 @@ typedef struct /*char [] payload;*/ } PACKED DltServiceGetSoftwareVersionResponse; +/** + * The structure of the DLT Service Unregister Context. + */ +typedef struct +{ + uint32_t service_id; /**< service ID */ + uint8_t status; /**< reponse status */ + char apid[DLT_ID_SIZE]; /**< application id */ + char ctid[DLT_ID_SIZE]; /**< context id */ + char comid[DLT_ID_SIZE]; /**< communication interface */ +} PACKED DltServiceUnregisterContext; + +/** + * The structure of the DLT Service Connection Info + */ +typedef struct +{ + uint32_t service_id; /**< service ID */ + uint8_t status; /**< reponse status */ + uint8_t state; /**< new state */ + char comid[DLT_ID_SIZE]; /**< communication interface */ +} PACKED DltServiceConnectionInfo; + /** * Structure to store filter parameters. * ID are maximal four characters. Unused values are filled with zeros. -- cgit v1.2.1