diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-05 13:37:48 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-12-17 15:36:04 +0000 | 
| commit | 5d25805193edc75cd446494b257507e1faa29568 (patch) | |
| tree | e32c66f7bc27862618550abebae8b884b88a1401 | |
| parent | Add at to flatmap (diff) | |
| download | icespider-5d25805193edc75cd446494b257507e1faa29568.tar.bz2 icespider-5d25805193edc75cd446494b257507e1faa29568.tar.xz icespider-5d25805193edc75cd446494b257507e1faa29568.zip | |
Simpler HTTPS const
| -rw-r--r-- | icespider/fcgi/cgiRequestBase.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/icespider/fcgi/cgiRequestBase.cpp b/icespider/fcgi/cgiRequestBase.cpp index a1c804b..c43ea57 100644 --- a/icespider/fcgi/cgiRequestBase.cpp +++ b/icespider/fcgi/cgiRequestBase.cpp @@ -19,7 +19,7 @@ namespace IceSpider {  	constexpr std::string_view amp("&");  	constexpr std::string_view semi("; ");  	constexpr std::string_view HEADER_PREFIX("HTTP_"); -	constexpr std::string_view HTTPS("HTTPS"); +	CGI_CONST(HTTPS);  	CGI_CONST(REDIRECT_URL);  	CGI_CONST(SCRIPT_NAME);  	CGI_CONST(QUERY_STRING); | 
