X-Git-Url: https://git.sesse.net/?p=nageru;a=blobdiff_plain;f=httpd.h;fp=httpd.h;h=509ae0146a344f101d34d199b36bcab3380c06a6;hp=878a184d12858341287a17f20d22e03a1e19bc83;hb=d3e48df512d9476d3849227067792a3537bb094e;hpb=9e47a2f661b9d292598ef0277e507458e3dad62f diff --git a/httpd.h b/httpd.h index 878a184..509ae01 100644 --- a/httpd.h +++ b/httpd.h @@ -33,8 +33,12 @@ public: } // Should be called before start() (due to threading issues). - void add_endpoint(const std::string &url, const EndpointCallback &callback) { - endpoints[url] = callback; + enum CORSPolicy { + NO_CORS_POLICY, + ALLOW_ALL_ORIGINS + }; + void add_endpoint(const std::string &url, const EndpointCallback &callback, CORSPolicy cors_policy) { + endpoints[url] = Endpoint{ callback, cors_policy }; } void start(int port); @@ -92,7 +96,11 @@ private: MHD_Daemon *mhd = nullptr; std::mutex streams_mutex; std::set streams; // Not owned. - std::unordered_map endpoints; + struct Endpoint { + EndpointCallback callback; + CORSPolicy cors_policy; + }; + std::unordered_map endpoints; std::string header; // Metrics.