From 170dc5d52419450edc440c054a94135c1cc1296a Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Mon, 5 Aug 2019 20:56:07 +0100 Subject: Excise the llcache query pathway. In further preparation for the auth and cert queries being handled as special contents from `about:` this excises the query pathway from the llcache pretty much entirely. Signed-off-by: Daniel Silverstone --- content/content.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'content/content.h') diff --git a/content/content.h b/content/content.h index 6e298e045..a5bf46c61 100644 --- a/content/content.h +++ b/content/content.h @@ -61,8 +61,6 @@ typedef enum { typedef enum { CONTENT_MSG_LOG, /**< Content wishes to log something */ CONTENT_MSG_SSL_CERTS, /**< Content is from SSL and this is its chain */ - CONTENT_MSG_QUERY, /**< Something under the content has a query */ - CONTENT_MSG_QUERY_FINISHED, /**< Something under the content finished its query */ CONTENT_MSG_LOADING, /**< fetching or converting */ CONTENT_MSG_READY, /**< may be displayed */ CONTENT_MSG_DONE, /**< finished */ @@ -114,10 +112,6 @@ union content_msg_data { const struct ssl_cert_info *certs; /**< The chain */ size_t num; /**< The number of certs in the chain */ } certs; - /** CONTENT_MSG_QUERY - Query from underlying object somewhere */ - const struct llcache_query_msg *query_msg; - /** CONTENT_MSG_QUERY_FINISHED - Query from underlying object finished */ - void *query_finished_pw; /** CONTENT_MSG_ERROR - Error from content or underlying fetch */ struct { nserror errorcode; /**< The error code to convey meaning */ -- cgit v1.2.3