summaryrefslogtreecommitdiff
path: root/src/components/include/protocol_handler/session_observer.h
diff options
context:
space:
mode:
authorjacobkeeler <jacob.keeler@livioradio.com>2017-07-25 11:20:38 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2017-07-25 11:20:38 -0400
commitc39bb5becd1e37530c4f8fea54b23d563620f3ef (patch)
treebd8c665241d2430fc8d8e25999d73a4f5c08e6e9 /src/components/include/protocol_handler/session_observer.h
parent64bfd2c583784a7239b0cb641b5c9d448169675c (diff)
downloadsdl_core-c39bb5becd1e37530c4f8fea54b23d563620f3ef.tar.gz
Implement reading and writing constructed payloads for StartService and EndService
Diffstat (limited to 'src/components/include/protocol_handler/session_observer.h')
-rw-r--r--src/components/include/protocol_handler/session_observer.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/include/protocol_handler/session_observer.h b/src/components/include/protocol_handler/session_observer.h
index 5e630c6c74..a5901baf0b 100644
--- a/src/components/include/protocol_handler/session_observer.h
+++ b/src/components/include/protocol_handler/session_observer.h
@@ -80,6 +80,13 @@ class SessionObserver {
const bool is_protected,
uint32_t* hash_id) = 0;
+ // DEPRECATED
+ virtual uint32_t OnSessionEndedCallback(
+ const transport_manager::ConnectionUID connection_handle,
+ const uint8_t sessionId,
+ const uint32_t& hashCode,
+ const protocol_handler::ServiceType& service_type) = 0;
+
/**
* \brief Callback function used by ProtocolHandler
* when Mobile Application initiates session ending.
@@ -94,7 +101,7 @@ class SessionObserver {
virtual uint32_t OnSessionEndedCallback(
const transport_manager::ConnectionUID connection_handle,
const uint8_t sessionId,
- const uint32_t& hashCode,
+ uint32_t* hashCode,
const protocol_handler::ServiceType& service_type) = 0;
/**