summaryrefslogtreecommitdiff
path: root/src/components/include/protocol_handler/protocol_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/include/protocol_handler/protocol_handler.h')
-rw-r--r--src/components/include/protocol_handler/protocol_handler.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/components/include/protocol_handler/protocol_handler.h b/src/components/include/protocol_handler/protocol_handler.h
index d65902030b..5e65fc69d4 100644
--- a/src/components/include/protocol_handler/protocol_handler.h
+++ b/src/components/include/protocol_handler/protocol_handler.h
@@ -86,27 +86,27 @@ class ProtocolHandler {
/**
* \brief Prepare and send heartbeat message to mobile app
- * \param connection_id Identifier of connection within which
- * session exists
- * \param session_id ID of session to be ended
+ * \param connection_id Identifier of connection within which
+ * session exists
+ * \param session_id ID of session to be ended
*/
virtual void SendHeartBeat(int32_t connection_id, uint8_t session_id) = 0;
/**
- * \brief Sends ending session to mobile application
- * \param connection_id Identifier of connection within which
- * session exists
- * \param session_id ID of session to be ended
- */
+ * \brief Sends ending session to mobile application
+ * \param connection_id Identifier of connection within which
+ * session exists
+ * \param session_id ID of session to be ended
+ */
virtual void SendEndSession(int32_t connection_id, uint8_t session_id) = 0;
/**
- * \brief Sends ending session to mobile application
- * \param primary_connection_id Identifier of connection within which
- * service exists
- * \param connection_id Identifier of the actual transport for the service
- * \param session_id ID of session to be ended
- */
+ * \brief Sends ending session to mobile application
+ * \param primary_connection_id Identifier of connection within which
+ * service exists
+ * \param connection_id Identifier of the actual transport for the service
+ * \param session_id ID of session to be ended
+ */
virtual void SendEndService(int32_t primary_connection_id,
int32_t connection_id,
uint8_t session_id,