Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | // Copyright (C) 2017 Norman Breau // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. export enum StatusCode { INFO_CONTINUE = 100, INFO_SWITCHING_PROTOCOLS = 101, INFO_PROCESSING = 102, OK = 200, OK_CREATED = 201, OK_ACCEPTED = 202, OK_NON_AUTH_INFO = 203, OK_NO_CONTENT = 204, OK_RESET_CONTENT = 205, OK_PARTIAL_CONTENT = 206, OK_MULTI_STATUS = 207, OK_ALREADY_REPORTED = 208, REDIR_MULTIPLE_CHOICE = 300, REDIR_MOVED_PERMANENTLY = 301, REDIR_FOUND = 301, REDIR_SEE_OTHER = 303, REDIR_NOT_MODIFIED = 304, REDIR_USE_PROXY = 305, REDIR_TEMP = 307, ERR_BAD_REQUEST = 400, ERR_UNAUTHORIZED = 401, // Used when the user needs to authorize. ERR_PAYMENT_REQUIRED = 402, ERR_FORBIDDEN = 403, // USed when the user is authorized but is not allowed access. ERR_NOT_FOUND = 404, ERR_NOT_ALLOWED = 405, ERR_NOT_ACCEPTABLE = 406, ERR_PROXY_AUTH_REQUIRED = 407, ERR_REQUEST_TIMEOUT = 408, ERR_CONFLICT= 409, ERR_GONE = 410, ERR_LENGTH_REQUIRED = 411, ERR_PRECONDITION_FAILED = 412, ERR_REQUEST_TOO_LARGE = 413, ERR_REQUEST_URI_TOO_LONG = 414, ERR_UNSUPPORTED_MEDIA_TYPE = 415, ERR_REQUEST_RANGE_NOT_SATISFIABLE = 416, ERR_EXPECTATION_FAILED = 417, ERR_TEAPOT = 418, ERR_UPGRADE_REQUIRED = 426, ERR_PRECONDITION_REQUIRED = 428, ERR_TOO_MANY_REQUESTS = 429, ERR_REQUEST_HEADERS_TOO_LARGE = 431, ERR_LEGAL = 451, INTERNAL_ERROR = 500, INTERNAL_NOT_IMPLEMENTED = 501, INTERNAL_BAD_GATEWAY = 502, INTERNAL_SERVICE_UNAVAILABLE = 503, INTERNAL_TIMEOUT = 504 } |