mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
da1c9e820c
show_prompt, keyserver_search_prompt, keyserver_spawn): Go to version 1 of the keyserver protocol. This is a better design, similar to --with-colons, that allows for keys with multiple user IDs rather than using multiple keys. It also matches the machine readable pksd format. Also use a prettier --search-keys listing format that can fill different size windows (currently set at 24 lines).
22 lines
599 B
C
22 lines
599 B
C
/* Keyserver internals */
|
|
|
|
#ifndef _KEYSERVER_INTERNAL_H_
|
|
#define _KEYSERVER_INTERNAL_H_
|
|
|
|
#include <time.h>
|
|
#include "keyserver.h"
|
|
#include "iobuf.h"
|
|
#include "types.h"
|
|
|
|
void parse_keyserver_options(char *options);
|
|
int parse_keyserver_uri(char *uri,
|
|
const char *configname,unsigned int configlineno);
|
|
int keyserver_export(STRLIST users);
|
|
int keyserver_import(STRLIST users);
|
|
int keyserver_import_fprint(const byte *fprint,size_t fprint_len);
|
|
int keyserver_import_keyid(u32 *keyid);
|
|
int keyserver_refresh(STRLIST users);
|
|
int keyserver_search(STRLIST tokens);
|
|
|
|
#endif /* !_KEYSERVER_INTERNAL_H_ */
|