mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-27 08:50:02 +03:00
d4d3e5ee1c
Handle invalid SSL certificates better - UI still needs work. Modify fetch callback data parameter type to remove compiler warnings. Constify things. Lose global ssl_verify_certificates option. Fix issue when closing a dialog without input focus. svn path=/import/netsurf/; revision=2092
19 lines
470 B
C
19 lines
470 B
C
/*
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2006 John M Bell <jmb202@ecs.soton.ac.uk>
|
|
*/
|
|
|
|
/** \file
|
|
* HTTPS certificate verification database (interface)
|
|
*/
|
|
|
|
#ifndef _NETSURF_CONTENT_CERTDB_H_
|
|
#define _NETSURF_CONTENT_CERTDB_H_
|
|
|
|
bool certdb_insert(const char *url);
|
|
const char *certdb_get(const char *url);
|
|
|
|
#endif
|