12345678910111213141516171819202122232425262728 |
- <?php
- /* Copyright (c) 2000-2012 Synology Inc. All rights reserved. */
-
- define('SZK_PARAM_API', 'api');
- define('SZK_PARAM_METHOD', 'method');
- define('SZK_PARAM_VERSION', 'version');
-
- define('SZK_API_PATH', 'path');
- define('SZK_API_MIN_VERSION', 'minVersion');
- define('SZK_API_MAX_VERSION', 'maxVersion');
- define('SZK_API_METHODS', 'methods');
-
- define('SZK_RESP_SUCCESS', 'success');
- define('SZK_RESP_DATA', 'data');
- define('SZK_RESP_ERROR', 'error');
- define('SZK_RESP_ERROR_CODE', 'code');
-
- define('WEBAPI_ERR_NONE', 0);
- define('WEBAPI_ERR_UNKNOWN', 100);
- define('WEBAPI_ERR_BAD_REQUEST', 101);
- define('WEBAPI_ERR_NO_SUCH_API', 102);
- define('WEBAPI_ERR_NO_SUCH_METHOD', 103);
- define('WEBAPI_ERR_NOT_SUPPORTED_VERSION', 104);
- define('WEBAPI_ERR_NO_PERMISSION', 105);
- define('WEBAPI_ERR_SESSION_TIMEOUT', 106);
- define('WEBAPI_ERR_SESSION_INTERRUPT', 107);
- define('WEBAPI_ERR_CUSTOMIZED_MIN', 400);
- ?>
|