From bfb1bb119241d85bb9b400881328496e12a39aed Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Mon, 5 Aug 2019 18:11:13 +0100 Subject: Migrate SSL certificate storage to the browser window * Fetchers now provide the certificates before headers * This is propagated all the way to the browser window * When a query occurs, we retrieve it from there and fire the query with those stored certificates. * The serial number is a bignum, store it as hex. Signed-off-by: Daniel Silverstone --- content/content.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'content/content.c') diff --git a/content/content.c b/content/content.c index bb69c766d..dc9805448 100644 --- a/content/content.c +++ b/content/content.c @@ -142,6 +142,9 @@ nserror content_llcache_callback(llcache_handle *llcache, nserror error = NSERROR_OK; switch (event->type) { + case LLCACHE_EVENT_GOT_CERTS: + /* Will never happen: handled in hlcache */ + break; case LLCACHE_EVENT_HAD_HEADERS: /* Will never happen: handled in hlcache */ break; -- cgit v1.2.3