PageRenderTime 38ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/condor-7.9.0/src/condor_includes/condor_error_codes.h

#
C Header | 81 lines | 49 code | 14 blank | 18 comment | 0 complexity | e5481b74fe6623052bcb051ced395ddc MD5 | raw file
Possible License(s): Apache-2.0
  1. /***************************************************************
  2. *
  3. * Copyright (C) 1990-2007, Condor Team, Computer Sciences Department,
  4. * University of Wisconsin-Madison, WI.
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License"); you
  7. * may not use this file except in compliance with the License. You may
  8. * obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. ***************************************************************/
  19. #ifndef CONDOR_ERROR_CODES_H_INCLUDE
  20. #define CONDOR_ERROR_CODES_H_INCLUDE
  21. const int AUTHENTICATE_ERR_NOT_BUILT = 1001;
  22. const int AUTHENTICATE_ERR_HANDSHAKE_FAILED = 1002;
  23. const int AUTHENTICATE_ERR_OUT_OF_METHODS = 1003;
  24. const int AUTHENTICATE_ERR_METHOD_FAILED = 1004;
  25. const int AUTHENTICATE_ERR_KEYEXCHANGE_FAILED = 1005;
  26. const int AUTHENTICATE_ERR_TIMEOUT = 1006;
  27. const int SECMAN_ERR_INTERNAL = 2001;
  28. const int SECMAN_ERR_INVALID_POLICY = 2002;
  29. const int SECMAN_ERR_CONNECT_FAILED = 2003;
  30. const int SECMAN_ERR_NO_SESSION = 2004;
  31. const int SECMAN_ERR_ATTRIBUTE_MISSING = 2005;
  32. const int SECMAN_ERR_NO_KEY = 2006;
  33. const int SECMAN_ERR_COMMUNICATIONS_ERROR = 2007;
  34. const int SECMAN_ERR_AUTHENTICATION_FAILED = 2008;
  35. const int SECMAN_ERR_CLIENT_AUTH_FAILED = 2009;
  36. const int DAEMON_ERR_INTERNAL = 3001;
  37. const int SCHEDD_ERR_JOB_ACTION_FAILED = 4001;
  38. const int SCHEDD_ERR_SPOOL_FILES_FAILED = 4002;
  39. const int SCHEDD_ERR_UPDATE_GSI_CRED_FAILED = 4003;
  40. const int SCHEDD_ERR_SET_EFFECTIVE_OWNER_FAILED = 4004;
  41. const int GSI_ERR_AQUIRING_SELF_CREDINTIAL_FAILED = 5001;
  42. const int GSI_ERR_REMOTE_SIDE_FAILED = 5002;
  43. const int GSI_ERR_ACQUIRING_SELF_CREDINTIAL_FAILED = 5003;
  44. const int GSI_ERR_AUTHENTICATION_FAILED = 5004;
  45. const int GSI_ERR_COMMUNICATIONS_ERROR = 5005;
  46. const int GSI_ERR_UNAUTHORIZED_SERVER = 5006;
  47. const int GSI_ERR_NO_VALID_PROXY = 5007;
  48. const int CEDAR_ERR_CONNECT_FAILED = 6001;
  49. const int CEDAR_ERR_EOM_FAILED = 6002;
  50. const int CEDAR_ERR_PUT_FAILED = 6003;
  51. const int CEDAR_ERR_GET_FAILED = 6004;
  52. const int CEDAR_ERR_REGISTER_SOCK_FAILED = 6005;
  53. const int CEDAR_ERR_STARTCOMMAND_FAILED = 6006;
  54. const int CEDAR_ERR_CANCELED = 6007;
  55. const int CEDAR_ERR_DEADLINE_EXPIRED = 6008;
  56. const int FILETRANSFER_INIT_FAILED = 7001;
  57. const int FILETRANSFER_UPLOAD_FAILED = 7002;
  58. const int FILETRANSFER_DOWNLOAD_FAILED = 7003;
  59. const int DAGMAN_ERR_LOG_FILE = 8001;
  60. const int UTIL_ERR_OPEN_FILE = 9001;
  61. const int UTIL_ERR_CLOSE_FILE = 9002;
  62. const int UTIL_ERR_GET_CWD = 9003;
  63. const int UTIL_ERR_LOG_FILE = 9004;
  64. const int DRAINING_ALREADY_IN_PROGRESS = 10001;
  65. const int DRAINING_NO_MATCHING_REQUEST_ID = 10002;
  66. const int DRAINING_CHECK_EXPR_FAILED = 10003;
  67. #endif