/* Copyright (C) <2007-2016> SatIp.RtspSample 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. SatIp.RtspSample 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 SatIp.RtspSample. If not, see . */ using System.ComponentModel; namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.SatIp.Rtsp { /// /// Standard RTSP status codes. /// public enum RtspStatusCode { /// /// 100 continue /// Continue = 100, /// /// 200 OK /// [Description("Okay")] Ok = 200, /// /// 201 created /// Created = 201, /// /// 250 low on storage space /// [Description("Low On Storage Space")] LowOnStorageSpace = 250, /// /// 300 multiple choices /// [Description("Multiple Choices")] MultipleChoices = 300, /// /// 301 moved permanently /// [Description("Moved Permanently")] MovedPermanently = 301, /// /// 302 moved temporarily /// [Description("Moved Temporarily")] MovedTemporarily = 302, /// /// 303 see other /// [Description("See Other")] SeeOther = 303, /// /// 304 not modified /// [Description("Not Modified")] NotModified = 304, /// /// 305 use proxy /// [Description("Use Proxy")] UseProxy = 305, /// /// 400 bad request /// [Description("Bad Request")] BadRequest = 400, /// /// 401 unauthorised /// Unauthorised = 401, /// /// 402 payment required /// [Description("Payment Required")] PaymentRequired = 402, /// /// 403 forbidden /// Forbidden = 403, /// /// 404 not found /// [Description("Not Found")] NotFound = 404, /// /// 405 method not allowed /// [Description("Method Not Allowed")] MethodNotAllowed = 405, /// /// 406 not acceptable /// [Description("Not Acceptable")] NotAcceptable = 406, /// /// 407 proxy authentication required /// [Description("Proxy Authentication Required")] ProxyAuthenticationRequred = 407, /// /// 408 request time-out /// [Description("Request Time-Out")] RequestTimeOut = 408, /// /// 410 gone /// Gone = 410, /// /// 411 length required /// [Description("Length Required")] LengthRequired = 411, /// /// 412 precondition failed /// [Description("Precondition Failed")] PreconditionFailed = 412, /// /// 413 request entity too large /// [Description("Request Entity Too Large")] RequestEntityTooLarge = 413, /// /// 414 request URI too large /// [Description("Request URI Too Large")] RequestUriTooLarge = 414, /// /// 415 unsupported media type /// [Description("Unsupported Media Type")] UnsupportedMediaType = 415, /// /// 451 parameter not understood /// [Description("Parameter Not Understood")] ParameterNotUnderstood = 451, /// /// 452 conference not found /// [Description("Conference Not Found")] ConferenceNotFound = 452, /// /// 453 not enough bandwidth /// [Description("Not Enough Bandwidth")] NotEnoughBandwidth = 453, /// /// 454 session not found /// [Description("Session Not Found")] SessionNotFound = 454, /// /// 455 method not valid in this state /// [Description("Method Not Valid In This State")] MethodNotValidInThisState = 455, /// /// 456 header field not valid for this resource /// [Description("Header Field Not Valid For This Resource")] HeaderFieldNotValidForThisResource = 456, /// /// 457 invalid range /// [Description("Invalid Range")] InvalidRange = 457, /// /// 458 parameter is read-only /// [Description("Parameter Is Read-Only")] ParameterIsReadOnly = 458, /// /// 459 aggregate operation not allowed /// [Description("Aggregate Operation Not Allowed")] AggregateOperationNotAllowed = 459, /// /// 460 only aggregate operation allowed /// [Description("Only Aggregate Operation Allowed")] OnlyAggregateOperationAllowed = 460, /// /// 461 unsupported transport /// [Description("Unsupported Transport")] UnsupportedTransport = 461, /// /// 462 destination unreachable /// [Description("Destination Unreachable")] DestinationUnreachable = 462, /// /// 500 internal server error /// [Description("Internal Server Error")] InternalServerError = 500, /// /// 501 not implemented /// [Description("Not Implemented")] NotImplemented = 501, /// /// 502 bad gateway /// [Description("Bad Gateway")] BadGateway = 502, /// /// 503 service unavailable /// [Description("Service Unavailable")] ServiceUnavailable = 503, /// /// 504 gateway time-out /// [Description("Gateway Time-Out")] GatewayTimeOut = 504, /// /// 505 RTSP version not supported /// [Description("RTSP Version Not Supported")] RtspVersionNotSupported = 505, /// /// 551 option not supported /// [Description("Option Not Supported")] OptionNotSupported = 551 } }