| 71 | } |
| 72 | |
| 73 | std::string BaseHttpHandler::GETString(const std::string& uri, const std::string& contentType, const std::string& body, |
| 74 | const std::string& adr, int port) const |
| 75 | { |
| 76 | return sendHTTPRequest("GET", uri, contentType, body, adr, port); |
| 77 | } |
| 78 | |
| 79 | std::string BaseHttpHandler::POSTString(const std::string& uri, const std::string& contentType, const std::string& body, |
| 80 | const std::string& adr, int port) const |
no outgoing calls