Skip to content

Commit

Permalink
Merge pull request #80 from dsociative/add-averror-too-many-requests
Browse files Browse the repository at this point in the history
AVERROR_HTTP_TOO_MANY_REQUESTS
  • Loading branch information
Polochon-street authored Aug 14, 2024
2 parents 61afaa8 + 9b76292 commit b12f234
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/avutil/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ pub const AVERROR_HTTP_BAD_REQUEST: c_int = FFERRTAG!(0xF8, b'4', b'0', b'0');
pub const AVERROR_HTTP_UNAUTHORIZED: c_int = FFERRTAG!(0xF8, b'4', b'0', b'1');
pub const AVERROR_HTTP_FORBIDDEN: c_int = FFERRTAG!(0xF8, b'4', b'0', b'3');
pub const AVERROR_HTTP_NOT_FOUND: c_int = FFERRTAG!(0xF8, b'4', b'0', b'4');
pub const AVERROR_HTTP_TOO_MANY_REQUESTS: c_int = FFERRTAG!(0xF8, b'4', b'2', b'9');
pub const AVERROR_HTTP_OTHER_4XX: c_int = FFERRTAG!(0xF8, b'4', b'X', b'X');
pub const AVERROR_HTTP_SERVER_ERROR: c_int = FFERRTAG!(0xF8, b'5', b'X', b'X');

Expand Down

0 comments on commit b12f234

Please sign in to comment.