| 195 | } |
| 196 | |
| 197 | const char* HTTP::CodeToMessage(UInt16 code) { |
| 198 | auto found = CodeMessages.find(code); |
| 199 | if (found != CodeMessages.end()) |
| 200 | return found->second; |
| 201 | return "Unknown"; |
| 202 | } |
| 203 | |
| 204 | HTTP::CommandType HTTP::ParseCommand(Exception& ex,const char* value) { |
| 205 | if (String::ICompare(value,EXPAND("GET"))==0) |