summaryrefslogtreecommitdiff
path: root/src/dpl/db/include
diff options
context:
space:
mode:
authorJanusz Kozerski <j.kozerski@samsung.com>2015-06-23 17:22:19 +0200
committerJanusz Kozerski <j.kozerski@samsung.com>2015-07-06 14:44:23 +0200
commitaa31c0517333688b611ba453b08138960b53244e (patch)
tree047f44f4f4dcb53f5ec4370105144e9ba90d1d6e /src/dpl/db/include
parentdb78d4705ab241499fe1ba438e15da514f4ec3ba (diff)
downloadcert-checker-aa31c0517333688b611ba453b08138960b53244e.tar.gz
cert-checker-aa31c0517333688b611ba453b08138960b53244e.tar.bz2
cert-checker-aa31c0517333688b611ba453b08138960b53244e.zip
Add pulling out certificates from apps' signature.
* Move DPL include files from "dpl/*" into "cchecker/dpl/* because of cert-svc-vcore also uses DPL (from wrt-commons), and that was causing build break. * Certificates are stored in buffer and database. * OCSP URLs are pulled out from certificates and stored in database. Change-Id: Ic0601da38619f7c7b784d952abe56888db036673
Diffstat (limited to 'src/dpl/db/include')
-rw-r--r--src/dpl/db/include/cchecker/dpl/db/naive_synchronization_object.h (renamed from src/dpl/db/include/dpl/db/naive_synchronization_object.h)2
-rw-r--r--src/dpl/db/include/cchecker/dpl/db/sql_connection.h (renamed from src/dpl/db/include/dpl/db/sql_connection.h)10
2 files changed, 6 insertions, 6 deletions
diff --git a/src/dpl/db/include/dpl/db/naive_synchronization_object.h b/src/dpl/db/include/cchecker/dpl/db/naive_synchronization_object.h
index 687d666..8836635 100644
--- a/src/dpl/db/include/dpl/db/naive_synchronization_object.h
+++ b/src/dpl/db/include/cchecker/dpl/db/naive_synchronization_object.h
@@ -23,7 +23,7 @@
#ifndef CCHECKER_NAIVE_SYNCHRONIZATION_OBJECT_H
#define CCHECKER_NAIVE_SYNCHRONIZATION_OBJECT_H
-#include <dpl/db/sql_connection.h>
+#include <cchecker/dpl/db/sql_connection.h>
namespace CCHECKER {
namespace DB {
diff --git a/src/dpl/db/include/dpl/db/sql_connection.h b/src/dpl/db/include/cchecker/dpl/db/sql_connection.h
index 321372b..8af5a58 100644
--- a/src/dpl/db/include/dpl/db/sql_connection.h
+++ b/src/dpl/db/include/cchecker/dpl/db/sql_connection.h
@@ -22,17 +22,17 @@
#ifndef CCHECKER_SQL_CONNECTION_H
#define CCHECKER_SQL_CONNECTION_H
-#include <dpl/noncopyable.h>
-#include <dpl/exception.h>
-#include <dpl/optional.h>
#include <memory>
-#include <dpl/string.h>
#include <sqlite3.h>
#include <string>
-#include <dpl/assert.h>
#include <memory>
#include <stdint.h>
+#include <cchecker/dpl/string.h>
+#include <cchecker/dpl/assert.h>
+#include <cchecker/dpl/noncopyable.h>
+#include <cchecker/dpl/exception.h>
+#include <cchecker/dpl/optional.h>
#include <cchecker/log.h>
namespace CCHECKER {