MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / SendHttpNotImplemented

Method SendHttpNotImplemented

cpp/webdriver-server/server.cc:658–667  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

656}
657
658void Server::SendHttpNotImplemented(struct mg_connection* connection,
659 const struct mg_request_info* request_info,
660 const std::string& body) {
661 LOG(TRACE) << "Entering Server::SendHttpNotImplemented";
662
663 std::ostringstream out;
664 out << "HTTP/1.1 501 Not Implemented\r\n\r\n";
665
666 mg_write(connection, out.str().c_str(), out.str().size());
667}
668
669void Server::SendHttpSeeOther(struct mg_connection* connection,
670 const struct mg_request_info* request_info,

Callers 1

SendResponseToClientMethod · 0.95

Calls 2

LOGClass · 0.70
sizeMethod · 0.45

Tested by

no test coverage detected