1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-22 10:19:57 +01:00

* keyserver.h: Add some new error codes for better GPA support.

This commit is contained in:
David Shaw 2002-09-24 18:29:57 +00:00
parent 1b8d4b26b6
commit 5835a80426
2 changed files with 18 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2002-09-24 David Shaw <dshaw@jabberwocky.com>
* keyserver.h: Add some new error codes for better GPA support.
2002-09-10 Werner Koch <wk@gnupg.org> 2002-09-10 Werner Koch <wk@gnupg.org>
* mpi.h (mpi_is_protected, mpi_set_protect_flag) * mpi.h (mpi_is_protected, mpi_set_protect_flag)

View File

@ -1,5 +1,5 @@
/* keyserver.h /* keyserver.h
* Copyright (C) 2001 Free Software Foundation, Inc. * Copyright (C) 2001, 2002 Free Software Foundation, Inc.
* *
* This file is part of GNUPG. * This file is part of GNUPG.
* *
@ -21,11 +21,19 @@
#ifndef _KEYSERVER_H_ #ifndef _KEYSERVER_H_
#define _KEYSERVER_H_ #define _KEYSERVER_H_
/* Return codes */ /* These are usable for return codes for the gpgkeys_ process, and
#define KEYSERVER_OK 0 also KEY FAILED codes. */
#define KEYSERVER_INTERNAL_ERROR 1 #define KEYSERVER_OK 0 /* not an error */
#define KEYSERVER_NOT_SUPPORTED 2 #define KEYSERVER_INTERNAL_ERROR 1 /* gpgkeys_ internal error */
#define KEYSERVER_VERSION_ERROR 3 #define KEYSERVER_NOT_SUPPORTED 2 /* operation not supported */
#define KEYSERVER_VERSION_ERROR 3 /* VERSION mismatch */
#define KEYSERVER_GENERAL_ERROR 4 /* keyserver internal error */
#define KEYSERVER_NO_MEMORY 5 /* out of memory */
#define KEYSERVER_KEY_NOT_FOUND 6 /* key not found */
#define KEYSERVER_KEY_EXISTS 7 /* key already exists */
#define KEYSERVER_KEY_INCOMPLETE 8 /* key incomplete (EOF) */
/* Must be 127 due to shell internal magic. */
#define KEYSERVER_SCHEME_NOT_FOUND 127 #define KEYSERVER_SCHEME_NOT_FOUND 127
#endif /* !_KEYSERVER_H_ */ #endif /* !_KEYSERVER_H_ */