diff options
author | corvid <devnull@localhost> | 2015-06-29 15:36:46 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2015-06-29 15:36:46 +0000 |
commit | 41f2b84001bb63d705c7981492a9637d4d48f5f7 (patch) | |
tree | f7b95cb6c4a8a04e59f62a43c3b432ea1bfe569d /src/dillo.cc | |
parent | b3b8727a42e89d8702c9702226d1140836f1146e (diff) |
HTTP Strict Transport Security
I'm not including the preload file yet.
Diffstat (limited to 'src/dillo.cc')
-rw-r--r-- | src/dillo.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dillo.cc b/src/dillo.cc index 6e28f155..24271103 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -51,6 +51,7 @@ #include "capi.h" #include "dicache.h" #include "cookies.h" +#include "hsts.h" #include "domain.h" #include "auth.h" #include "styleengine.hh" @@ -483,6 +484,7 @@ int main(int argc, char **argv) a_Dicache_init(); a_Bw_init(); a_Cookies_init(); + a_Hsts_init(Paths::getPrefsFP(PATHS_HSTS_PRELOAD)); a_Auth_init(); a_UIcmd_init(); StyleEngine::init(); @@ -596,6 +598,7 @@ int main(int argc, char **argv) */ a_Domain_freeall(); a_Cookies_freeall(); + a_Hsts_freeall(); a_Cache_freeall(); a_Dicache_freeall(); a_Http_freeall(); |