llhttpstatuscodes.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llhttpstatuscodes.h
  3.  * @brief Constants for HTTP status codes
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_HTTP_STATUS_CODES_H
  33. #define LL_HTTP_STATUS_CODES_H
  34. #include "stdtypes.h"
  35. // Standard errors from HTTP spec:
  36. // http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1
  37. const S32 HTTP_CONTINUE = 100;
  38. const S32 HTTP_SWITCHING_PROTOCOLS = 101;
  39. // Success
  40. const S32 HTTP_OK = 200;
  41. const S32 HTTP_CREATED = 201;
  42. const S32 HTTP_ACCEPTED = 202;
  43. const S32 HTTP_NON_AUTHORITATIVE_INFORMATION = 203;
  44. const S32 HTTP_NO_CONTENT = 204;
  45. const S32 HTTP_RESET_CONTENT = 205;
  46. const S32 HTTP_PARTIAL_CONTENT = 206;
  47. // Redirection
  48. const S32 HTTP_MULTIPLE_CHOICES = 300;
  49. const S32 HTTP_MOVED_PERMANENTLY = 301;
  50. const S32 HTTP_FOUND = 302;
  51. const S32 HTTP_SEE_OTHER = 303;
  52. const S32 HTTP_NOT_MODIFIED = 304;
  53. const S32 HTTP_USE_PROXY = 305;
  54. const S32 HTTP_TEMPORARY_REDIRECT = 307;
  55. // Client Error
  56. const S32 HTTP_BAD_REQUEST = 400;
  57. const S32 HTTP_UNAUTHORIZED = 401;
  58. const S32 HTTP_PAYMENT_REQUIRED = 402;
  59. const S32 HTTP_FORBIDDEN = 403;
  60. const S32 HTTP_NOT_FOUND = 404;
  61. const S32 HTTP_METHOD_NOT_ALLOWED = 405;
  62. const S32 HTTP_NOT_ACCEPTABLE = 406;
  63. const S32 HTTP_PROXY_AUTHENTICATION_REQUIRED = 407;
  64. const S32 HTTP_REQUEST_TIME_OUT = 408;
  65. const S32 HTTP_CONFLICT = 409;
  66. const S32 HTTP_GONE = 410;
  67. const S32 HTTP_LENGTH_REQUIRED = 411;
  68. const S32 HTTP_PRECONDITION_FAILED = 412;
  69. const S32 HTTP_REQUEST_ENTITY_TOO_LARGE = 413;
  70. const S32 HTTP_REQUEST_URI_TOO_LARGE = 414;
  71. const S32 HTTP_UNSUPPORTED_MEDIA_TYPE = 415;
  72. const S32 HTTP_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
  73. const S32 HTTP_EXPECTATION_FAILED = 417;
  74. // Server Error
  75. const S32 HTTP_INTERNAL_SERVER_ERROR = 500;
  76. const S32 HTTP_NOT_IMPLEMENTED = 501;
  77. const S32 HTTP_BAD_GATEWAY = 502;
  78. const S32 HTTP_SERVICE_UNAVAILABLE = 503;
  79. const S32 HTTP_GATEWAY_TIME_OUT = 504;
  80. const S32 HTTP_VERSION_NOT_SUPPORTED = 505;
  81. // We combine internal process errors with status codes
  82. // These status codes should not be sent over the wire
  83. //   and indicate something went wrong internally.
  84. // If you get these they are not normal.
  85. const S32 HTTP_INTERNAL_ERROR = 499;
  86. #endif