defined implicit ranges for error codes.

git-svn-id: svn://10.0.0.236/trunk@30897 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
valeski%netscape.com
1999-05-09 19:25:20 +00:00
parent 0452495ed6
commit ea8d800a2d

View File

@@ -23,6 +23,11 @@
/* networking error codes */
// NET RANGE: 1 -20
// FTP RANGE: 21-30
// HTTP RANGE: 31-40
// DNS RANGE: 41-50
#define NS_ERROR_ALREADY_CONNECTED \
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 1)
@@ -38,4 +43,7 @@
#define NS_ERROR_TCP_TIMEOUT \
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 5)
#define NS_ERROR_IN_PROGRESS \
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 6)
#endif // __netCore_h__