summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2019-08-06 13:15:23 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2019-08-06 13:15:23 +0100
commit1cf1ec55bc7647e737d7ec41bfe1def721269c02 (patch)
tree7fd4c9bdfe1d14789dbbe3eba696bba761dabf74 /frontends
parent75349e79d82c43b9731b9349364f467c81fce94b (diff)
downloadnetsurf-1cf1ec55bc7647e737d7ec41bfe1def721269c02.tar.gz
netsurf-1cf1ec55bc7647e737d7ec41bfe1def721269c02.tar.bz2
Support SSL verification through new about: handler
In doing this, also propagate why the certificates were bad so that the page can display a reason. We will need FatMessages for all these. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'frontends')
-rw-r--r--frontends/amiga/gui.c1
-rw-r--r--frontends/atari/gui.c1
-rw-r--r--frontends/gtk/gui.c1
-rw-r--r--frontends/riscos/gui.c1
-rw-r--r--frontends/windows/main.c2
5 files changed, 0 insertions, 6 deletions
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index af9322e53..a81de1692 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -6086,7 +6086,6 @@ static struct gui_misc_table amiga_misc_table = {
.quit = gui_quit,
.launch_url = gui_launch_url,
- .cert_verify = ami_cert_verify,
};
/** Normal entry point from OS */
diff --git a/frontends/atari/gui.c b/frontends/atari/gui.c
index cce4e13ee..517289d49 100644
--- a/frontends/atari/gui.c
+++ b/frontends/atari/gui.c
@@ -1107,7 +1107,6 @@ static struct gui_misc_table atari_misc_table = {
.warning = atari_warn_user,
.quit = gui_quit,
- .cert_verify = gui_cert_verify,
};
/* #define WITH_DBG_LOGFILE 1 */
diff --git a/frontends/gtk/gui.c b/frontends/gtk/gui.c
index 740543b44..384f3fccc 100644
--- a/frontends/gtk/gui.c
+++ b/frontends/gtk/gui.c
@@ -1072,7 +1072,6 @@ static struct gui_misc_table nsgtk_misc_table = {
.quit = gui_quit,
.launch_url = gui_launch_url,
- .cert_verify = gtk_cert_verify,
.pdf_password = nsgtk_pdf_password,
};
diff --git a/frontends/riscos/gui.c b/frontends/riscos/gui.c
index ef215487d..169b89b1c 100644
--- a/frontends/riscos/gui.c
+++ b/frontends/riscos/gui.c
@@ -2431,7 +2431,6 @@ static struct gui_misc_table riscos_misc_table = {
.quit = gui_quit,
.launch_url = gui_launch_url,
- .cert_verify = gui_cert_verify,
};
diff --git a/frontends/windows/main.c b/frontends/windows/main.c
index bae7815ae..ea9d99571 100644
--- a/frontends/windows/main.c
+++ b/frontends/windows/main.c
@@ -312,8 +312,6 @@ static nserror nsw32_messages_init(char **respaths)
static struct gui_misc_table win32_misc_table = {
.schedule = win32_schedule,
.warning = win32_warning,
-
- .cert_verify = nsw32_cert_verify,
};
/**