comparison Core/HttpServer/FilesystemHttpHandler.cpp @ 1042:8d1845feb277

set cookies, not allowed methods, unauthorized in plugins
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Jul 2014 15:55:40 +0200
parents e078ea944089
children ba5c0908600c
comparison
equal deleted inserted replaced
1041:2c49b7dffcec 1042:8d1845feb277
134 return false; 134 return false;
135 } 135 }
136 136
137 if (method != HttpMethod_Get) 137 if (method != HttpMethod_Get)
138 { 138 {
139 output.SendMethodNotAllowedError("GET"); 139 output.SendMethodNotAllowed("GET");
140 return true; 140 return true;
141 } 141 }
142 142
143 namespace fs = boost::filesystem; 143 namespace fs = boost::filesystem;
144 144