///////////////////////////////////////////////////////
| 55 | |
| 56 | //////////////////////////////////////////////////////////// |
| 57 | void Http::Request::setField(const std::string& field, const std::string& value) |
| 58 | { |
| 59 | m_fields[toLower(field)] = value; |
| 60 | } |
| 61 | |
| 62 | |
| 63 | //////////////////////////////////////////////////////////// |