00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _PEP_ERROR_H_
00026 #define _PEP_ERROR_H_
00027
00028 #ifdef __cplusplus
00029 extern "C" {
00030 #endif
00031
00059 typedef enum {
00060 PEP_OK = 0,
00061 PEP_ERR_MEMORY,
00062 PEP_ERR_NULL_POINTER,
00063 PEP_ERR_LLIST,
00064 PEP_ERR_PIP_INIT,
00065 PEP_ERR_OH_INIT,
00066 PEP_ERR_OPTION_INVALID,
00067 PEP_ERR_PIP_PROCESS,
00068 PEP_ERR_AUTHZ_REQUEST,
00069 PEP_ERR_OH_PROCESS,
00070 PEP_ERR_MARSHALLING_HESSIAN,
00071 PEP_ERR_MARSHALLING_IO,
00072 PEP_ERR_UNMARSHALLING_HESSIAN,
00073 PEP_ERR_UNMARSHALLING_IO,
00074 PEP_ERR_CURL = 1024
00075 } pep_error_t;
00076
00083 const char * pep_strerror(pep_error_t pep_errno);
00084
00087 #ifdef __cplusplus
00088 }
00089 #endif
00090
00091 #endif