Browse Source

Merge pull request #794 from l-n-s/reseed_from_zip

Added protection from clickjacking (#706)
pull/797/head
orignal 8 years ago committed by GitHub
parent
commit
2ed356be65
  1. 1
      HTTPServer.cpp

1
HTTPServer.cpp

@ -875,6 +875,7 @@ namespace http { @@ -875,6 +875,7 @@ namespace http {
void HTTPConnection::SendReply (HTTPRes& reply, std::string& content)
{
reply.add_header("X-Frame-Options", "SAMEORIGIN");
reply.add_header("Content-Type", "text/html");
reply.body = content;

Loading…
Cancel
Save