-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Max Age CURL Option #360
Conversation
Constants are validated against system libcurl which is dependent on versions. To add an exclusion configuration for a new constant, you can add a new match here: Lines 63 to 156 in badb448
In this case, |
Thanks for the PR! Can we also expose this in the Rust interface? Something like this: impl Easy2 {
pub fn maxage_conn(&mut self, maxage: Duration) -> Result<(), Error> {
// todo
}
} See Lines 1067 to 1069 in badb448
We also more-or-less copy-paste every function into |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, looks good to me. Thanks for contributing!
This would ideally be added to support the feature addition mentioned in sagebind/isahc#93.
I found the constant listed here.