RPC: CORS add Access-Control-Allow-Headers to OPTIONS preflight

This commit is contained in:
Tim L 2017-11-16 12:33:31 -05:00
parent dc6a8014bd
commit f5461a6a07
1 changed files with 3 additions and 0 deletions

View File

@ -639,6 +639,9 @@ namespace net_utils
buf += "Access-Control-Allow-Origin: ";
buf += m_query_info.m_header_info.m_origin;
buf += "\r\n";
buf += "Access-Control-Expose-Headers: www-authenticate\r\n";
if (m_query_info.m_http_method == http::http_method_options)
buf += "Access-Control-Allow-Headers: Content-Type, Authorization, X-Requested-With\r\n";
buf += "Access-Control-Allow-Methods: POST, PUT, GET, OPTIONS\r\n";
}
}