2011-01-10 14:30:17 +01:00
|
|
|
/* ks-engine.h - Keyserver engines definitions
|
|
|
|
* Copyright (C) 2011 Free Software Foundation, Inc.
|
2015-03-19 11:02:46 +01:00
|
|
|
* Copyright (C) 2015 g10 Code GmbH
|
2011-01-10 14:30:17 +01:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIRMNGR_KS_ENGINE_H
|
|
|
|
#define DIRMNGR_KS_ENGINE_H 1
|
|
|
|
|
2015-10-18 20:07:44 +02:00
|
|
|
#include "http.h"
|
2011-01-10 14:30:17 +01:00
|
|
|
|
2011-02-09 17:48:00 +01:00
|
|
|
/*-- ks-action.c --*/
|
|
|
|
gpg_error_t ks_print_help (ctrl_t ctrl, const char *text);
|
2014-03-11 14:26:39 +01:00
|
|
|
gpg_error_t ks_printf_help (ctrl_t ctrl, const char *format,
|
2015-07-26 12:50:16 +02:00
|
|
|
...) GPGRT_ATTR_PRINTF(2,3);
|
2011-02-09 17:48:00 +01:00
|
|
|
|
2011-01-10 14:30:17 +01:00
|
|
|
/*-- ks-engine-hkp.c --*/
|
2014-03-11 14:26:39 +01:00
|
|
|
gpg_error_t ks_hkp_resolve (ctrl_t ctrl, parsed_uri_t uri);
|
2014-03-11 16:19:41 +01:00
|
|
|
gpg_error_t ks_hkp_mark_host (ctrl_t ctrl, const char *name, int alive);
|
2014-03-11 14:26:39 +01:00
|
|
|
gpg_error_t ks_hkp_print_hosttable (ctrl_t ctrl);
|
2011-02-09 17:48:00 +01:00
|
|
|
gpg_error_t ks_hkp_help (ctrl_t ctrl, parsed_uri_t uri);
|
2011-01-10 14:30:17 +01:00
|
|
|
gpg_error_t ks_hkp_search (ctrl_t ctrl, parsed_uri_t uri, const char *pattern,
|
2015-12-04 12:32:20 +01:00
|
|
|
estream_t *r_fp, unsigned int *r_http_status);
|
2011-01-18 12:51:16 +01:00
|
|
|
gpg_error_t ks_hkp_get (ctrl_t ctrl, parsed_uri_t uri,
|
|
|
|
const char *keyspec, estream_t *r_fp);
|
2011-01-20 14:12:53 +01:00
|
|
|
gpg_error_t ks_hkp_put (ctrl_t ctrl, parsed_uri_t uri,
|
|
|
|
const void *data, size_t datalen);
|
2011-01-10 14:30:17 +01:00
|
|
|
|
2011-02-09 15:42:29 +01:00
|
|
|
/*-- ks-engine-http.c --*/
|
2011-02-09 17:48:00 +01:00
|
|
|
gpg_error_t ks_http_help (ctrl_t ctrl, parsed_uri_t uri);
|
2011-02-09 15:42:29 +01:00
|
|
|
gpg_error_t ks_http_fetch (ctrl_t ctrl, const char *url, estream_t *r_fp);
|
|
|
|
|
|
|
|
|
2011-02-08 21:11:19 +01:00
|
|
|
/*-- ks-engine-finger.c --*/
|
2011-02-09 17:48:00 +01:00
|
|
|
gpg_error_t ks_finger_help (ctrl_t ctrl, parsed_uri_t uri);
|
2011-02-09 15:42:29 +01:00
|
|
|
gpg_error_t ks_finger_fetch (ctrl_t ctrl, parsed_uri_t uri, estream_t *r_fp);
|
2011-02-08 21:11:19 +01:00
|
|
|
|
2011-02-09 17:48:00 +01:00
|
|
|
/*-- ks-engine-kdns.c --*/
|
|
|
|
gpg_error_t ks_kdns_help (ctrl_t ctrl, parsed_uri_t uri);
|
|
|
|
gpg_error_t ks_kdns_fetch (ctrl_t ctrl, parsed_uri_t uri, estream_t *r_fp);
|
|
|
|
|
2015-03-19 11:02:46 +01:00
|
|
|
/*-- ks-engine-ldap.c --*/
|
|
|
|
gpg_error_t ks_ldap_help (ctrl_t ctrl, parsed_uri_t uri);
|
|
|
|
gpg_error_t ks_ldap_search (ctrl_t ctrl, parsed_uri_t uri, const char *pattern,
|
|
|
|
estream_t *r_fp);
|
|
|
|
gpg_error_t ks_ldap_get (ctrl_t ctrl, parsed_uri_t uri,
|
|
|
|
const char *keyspec, estream_t *r_fp);
|
|
|
|
gpg_error_t ks_ldap_put (ctrl_t ctrl, parsed_uri_t uri,
|
|
|
|
void *data, size_t datalen,
|
|
|
|
void *info, size_t infolen);
|
2011-01-10 14:30:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*DIRMNGR_KS_ENGINE_H*/
|