-
Notifications
You must be signed in to change notification settings - Fork 378
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
headers field should be case insensitive #157
Comments
@KaiPetzke if you can please submit a fix for this it would be appreciated. It sounds like you already have it but are just unfamiliar with the contributing guidelines? |
Yeah, I didn't read the contribution guidelines. I am busy this week, will try to add a formal fix next week. @edwinpjacques What do you suggest about my comments below the headline "suggested fix"? Do you prefer |
std::tolower looks good. https://en.cppreference.com/w/cpp/string/byte/tolower |
I am still busy, will look at all these issues early next year. |
Shall I fix the issue? |
Expected behaviour
The following code snippet:
should yield a result similiar to the following:
date: "Tue, 11 Aug 2020 19:52:17 GMT"
Date: "Tue, 11 Aug 2020 19:52:17 GMT"
Actual behaviour
The result is as follows:
date: not found
Date: "Tue, 11 Aug 2020 19:52:17 GMT"
This is an error, as according to RFC 2616: "Field names are case-insensitive". And yes, unfortunately, there are servers, that change the case of their response header fields at will.
Environment and debugging details
This happens with any C compiler and libcurl
Suggested fix:
Use a custom compare function to make the std::map in RestClient::HeaderFields case-insensitive. I have attached a file with the suggested change. Yes, it uses std::tolower(), which unfortunately is locale dependant, for conversion to lowercase. So depending on language settings, tolower() might convert, say, Ç to ç or not. If that is considered an issue, an alternative would be to explicitely only map characters in the range 'A' to 'Z' to 'a' to 'z', and use this mapping function instead of std::tolower():
restclient.diff.txt
The text was updated successfully, but these errors were encountered: