You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's possible to set the feature flags for curl.url_set using bit operations, but that's probably not the most convenient way to do it. Because curl uses a bitmask, named enum values won't work. I'm also not sure how important it is to modify the flags conveniently. For now, I guess this can wait.
Before implementing anything, it would be useful to see which other libraries require using a similar bitmask-style API.
Ideally, a general solution could be devised that allows setting, unsetting, and querying features a bit more easily.
It's possible to set the feature flags for
curl.url_set
usingbit
operations, but that's probably not the most convenient way to do it. Because curl uses a bitmask, named enum values won't work. I'm also not sure how important it is to modify the flags conveniently. For now, I guess this can wait.See https://curl.se/libcurl/c/curl_url_set.html
Split off from #653.
The text was updated successfully, but these errors were encountered: