Added more error codes.

svn path=/trunk/boinc/; revision=314
This commit is contained in:
Eric Heien 2002-08-13 22:32:34 +00:00
parent addc0babd7
commit 362abcde92
1 changed files with 8 additions and 4 deletions

View File

@ -31,11 +31,15 @@
#define ERR_OPENDIR -111
#define ERR_XML_PARSE -112
#define ERR_GETHOSTBYNAME -113
#define ERR_GIVEUP -114
// too much time has elapsed without progress on file xfer
#define ERR_NULL -115
#define ERR_GIVEUP -114
// unexpected NULL pointer
#define ERR_NEG -116
#define ERR_NULL -115
// unexpected negative value
#define ERR_BUFF_OVERFLOW -117
#define ERR_NEG -116
// caught buffer overflow
#define ERR_BUFF_OVERFLOW -117
// MD5 checksum failed for a file
#define ERR_MD5_FAILED -118
// RSA key check failed for a file
#define ERR_RSA_FAILED -119