summaryrefslogtreecommitdiff
path: root/content/authdb.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2006-04-09 23:21:13 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2006-04-09 23:21:13 +0000
commitc09eb457df1962f5b014214874b2beffd69141a4 (patch)
treea7c30e8b57b1d8bdeb87127c8f1ba16e91bf3971 /content/authdb.h
parente5e1b982d55636b409b194cf0488ebafe9c6d519 (diff)
downloadnetsurf-c09eb457df1962f5b014214874b2beffd69141a4.tar.gz
netsurf-c09eb457df1962f5b014214874b2beffd69141a4.tar.bz2
Unify information databases
svn path=/trunk/netsurf/; revision=2519
Diffstat (limited to 'content/authdb.h')
-rw-r--r--content/authdb.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/content/authdb.h b/content/authdb.h
deleted file mode 100644
index ece7b763d..000000000
--- a/content/authdb.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * 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
- * HTTP authentication database (interface)
- */
-
-#ifndef _NETSURF_CONTENT_AUTHDB_H_
-#define _NETSURF_CONTENT_AUTHDB_H_
-
-bool authdb_insert(const char *url, const char *realm, const char *auth);
-const char *authdb_get(const char *url);
-
-#endif