diff options
author | Tim L <timo614@gmail.com> | 2017-10-24 09:26:05 -0400 |
---|---|---|
committer | Tim L <timo614@gmail.com> | 2017-10-30 13:55:56 -0400 |
commit | 69c37200aa87f100f731e755bdca7a0dc6ae820a (patch) | |
tree | 3ce8802ae8709ba3e49a16c5a1d5f07038fb819f /contrib/epee/include/net/http_protocol_handler.h | |
parent | Merge pull request #2601 (diff) | |
download | monero-69c37200aa87f100f731e755bdca7a0dc6ae820a.tar.xz |
RPC Add cross origin resource sharing support
Diffstat (limited to 'contrib/epee/include/net/http_protocol_handler.h')
-rwxr-xr-x[-rw-r--r--] | contrib/epee/include/net/http_protocol_handler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/epee/include/net/http_protocol_handler.h b/contrib/epee/include/net/http_protocol_handler.h index babe49ad7..652d8ff6f 100644..100755 --- a/contrib/epee/include/net/http_protocol_handler.h +++ b/contrib/epee/include/net/http_protocol_handler.h @@ -54,6 +54,7 @@ namespace net_utils struct http_server_config { std::string m_folder; + std::vector<std::string> m_access_control_origins; boost::optional<login> m_user; critical_section m_lock; }; @@ -193,6 +194,7 @@ namespace net_utils response.m_response_code = 200; response.m_response_comment = "OK"; response.m_body.clear(); + return m_config.m_phandler->handle_http_request(query_info, response, m_conn_context); } |