mirror of https://github.com/BOINC/boinc.git
Added more error codes.
svn path=/trunk/boinc/; revision=314
This commit is contained in:
parent
addc0babd7
commit
362abcde92
|
@ -31,11 +31,15 @@
|
||||||
#define ERR_OPENDIR -111
|
#define ERR_OPENDIR -111
|
||||||
#define ERR_XML_PARSE -112
|
#define ERR_XML_PARSE -112
|
||||||
#define ERR_GETHOSTBYNAME -113
|
#define ERR_GETHOSTBYNAME -113
|
||||||
|
// too much time has elapsed without progress on file xfer
|
||||||
#define ERR_GIVEUP -114
|
#define ERR_GIVEUP -114
|
||||||
// too much time has elapsed without progress on file xfer
|
// unexpected NULL pointer
|
||||||
#define ERR_NULL -115
|
#define ERR_NULL -115
|
||||||
// unexpected NULL pointer
|
// unexpected negative value
|
||||||
#define ERR_NEG -116
|
#define ERR_NEG -116
|
||||||
// unexpected negative value
|
// caught buffer overflow
|
||||||
#define ERR_BUFF_OVERFLOW -117
|
#define ERR_BUFF_OVERFLOW -117
|
||||||
// caught buffer overflow
|
// MD5 checksum failed for a file
|
||||||
|
#define ERR_MD5_FAILED -118
|
||||||
|
// RSA key check failed for a file
|
||||||
|
#define ERR_RSA_FAILED -119
|
Loading…
Reference in New Issue