We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b50c5d3 commit 51a0865Copy full SHA for 51a0865
curl-sys/lib.rs
@@ -715,6 +715,12 @@ pub const CURL_FORMADD_INCOMPLETE: CURLFORMcode = 5;
715
pub const CURL_FORMADD_ILLEGAL_ARRAY: CURLFORMcode = 6;
716
pub const CURL_FORMADD_DISABLED: CURLFORMcode = 7;
717
718
+pub const CURL_REDIR_POST_301: c_ulong = 1;
719
+pub const CURL_REDIR_POST_302: c_ulong = 2;
720
+pub const CURL_REDIR_POST_303: c_ulong = 4;
721
+pub const CURL_REDIR_POST_ALL: c_ulong =
722
+ CURL_REDIR_POST_301 | CURL_REDIR_POST_302 | CURL_REDIR_POST_303;
723
+
724
#[repr(C)]
725
pub struct curl_forms {
726
pub option: CURLformoption,
0 commit comments