summaryrefslogtreecommitdiff
path: root/src/components/protocol_handler
diff options
context:
space:
mode:
authorAlexandr Galiuzov <agaliuzov@luxoft.com>2015-09-09 16:05:18 +0300
committerAleksandr Galiuzov <AGaliuzov@luxoft.com>2015-10-04 20:12:52 +0300
commitd656eb202c2c1060adf2e700bc2719f131d9f8bb (patch)
tree877d62f40b73f36c6ee716832530224efceee54f /src/components/protocol_handler
parent20b2fc038ba1ed5c6d6d882d525781c41a740ea2 (diff)
downloadsdl_core-d656eb202c2c1060adf2e700bc2719f131d9f8bb.tar.gz
Trigger update in case of certificate to be expired
In case when certificate from policy table will be expired in less then defined in config file hours amount the PTU will be triggered. Closes-Issue:APPLINK-12302
Diffstat (limited to 'src/components/protocol_handler')
-rw-r--r--src/components/protocol_handler/src/protocol_handler_impl.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/protocol_handler/src/protocol_handler_impl.cc b/src/components/protocol_handler/src/protocol_handler_impl.cc
index 10b42b049f..f75651b951 100644
--- a/src/components/protocol_handler/src/protocol_handler_impl.cc
+++ b/src/components/protocol_handler/src/protocol_handler_impl.cc
@@ -994,6 +994,9 @@ class StartSessionHandler : public security_manager::SecurityManagerListener {
return true;
}
+ void OnCertificateUpdateRequired() OVERRIDE {
+ }
+
private:
const uint32_t connection_key_;
ProtocolHandlerImpl *protocol_handler_;