Quantcast
Channel: Software Communities : Popular Discussions - All Things Unix
Viewing all articles
Browse latest Browse all 1046

VAS Error Codes???

$
0
0

It’s not verbose but it’ll give you the idea of which codes mean what.

 

/** vas_err_t error codes

 * Nearly all VAS API functions return a vas_err_t type. More information about

 * the specific VAS error conditions that may result can be found in the

 * documentation for each VAS API function.

 **/

typedef enum vas_err

{

    VAS_ERR_BAD_ERR         = -1,

    VAS_ERR_SUCCESS         =  0,

    VAS_ERR_FAILURE         =  1,

    VAS_ERR_KRB5            =  2,

    VAS_ERR_KPASSWD         =  3,

    VAS_ERR_LDAP            =  4,

    VAS_ERR_INVALID_PARAM   =  5,

    VAS_ERR_NO_MEMORY       =  6,

    VAS_ERR_ACCESS          =  7,

    VAS_ERR_NOT_FOUND       =  8,

    VAS_ERR_THREAD          =  9,

    VAS_ERR_CONFIG          =  10,

    VAS_ERR_INTERNAL        =  11,

    VAS_ERR_EXISTS          =  12,

    VAS_ERR_DNS             =  13,

    VAS_ERR_CRED_EXPIRED    =  14,

    VAS_ERR_CRED_NEEDED     =  15,

    VAS_ERR_MORE_VALS       =  16,

    VAS_ERR_TIMEDOUT        =  17,

    VAS_ERR_INCOMPLETE      =  18,

    VAS_ERR_PKCS11          =  19,

    VAS_ERR_NOT_IMPLEMENTED =  20

} vas_err_t;

 

From:Michael Thompson
Sent: Monday, October 30, 2006 8:53 AM
Subject: RE: Error codes and messages

 

The VAS specific codes and brief explanation can be found in the vas.h file installed at /opt/quest/include in conjunction with the vasdev package. I believe that’s included on the iso under SDK.

 


-----Original Message-----
From: Ewan Millington
Sent: Monday, October 30, 2006 8:45 AM
Subject: Error codes and messages

 

Hi All,

 

A customer has asked if there are any documents detailing what error messages and codes logged by vasd, vgp, and vasypserv etc mean. 

Thanks in advance,

 

Ewan Millington

Tech. Support Engineer

Quest Software (UK) Ltd

Phone: +44 01628518007

http://support.quest.com

 


Viewing all articles
Browse latest Browse all 1046

Trending Articles