2011-01-10 14:30:17 +01:00
|
|
|
/* ks-action.h - OpenPGP keyserver actions definitions
|
|
|
|
* Copyright (C) 2011 Free Software Foundation, Inc.
|
2015-03-19 11:02:46 +01:00
|
|
|
* 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
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2011-01-10 14:30:17 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIRMNGR_KS_ACTION_H
|
|
|
|
#define DIRMNGR_KS_ACTION_H 1
|
|
|
|
|
2011-02-09 17:48:00 +01:00
|
|
|
gpg_error_t ks_action_help (ctrl_t ctrl, const char *url);
|
2015-03-28 17:23:56 +01:00
|
|
|
gpg_error_t ks_action_resolve (ctrl_t ctrl, uri_item_t keyservers);
|
|
|
|
gpg_error_t ks_action_search (ctrl_t ctrl, uri_item_t keyservers,
|
|
|
|
strlist_t patterns, estream_t outfp);
|
|
|
|
gpg_error_t ks_action_get (ctrl_t ctrl, uri_item_t keyservers,
|
2021-04-16 20:21:23 +02:00
|
|
|
strlist_t patterns, int ldap_only, estream_t outfp);
|
2011-02-08 21:11:19 +01:00
|
|
|
gpg_error_t ks_action_fetch (ctrl_t ctrl, const char *url, estream_t outfp);
|
2015-03-28 17:23:56 +01:00
|
|
|
gpg_error_t ks_action_put (ctrl_t ctrl, uri_item_t keyservers,
|
|
|
|
void *data, size_t datalen,
|
2015-03-19 11:02:46 +01:00
|
|
|
void *info, size_t infolen);
|
2011-01-10 14:30:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*DIRMNGR_KS_ACTION_H*/
|