comparison Core/HttpServer/MongooseServer.h @ 1959:45c4387a379c

Access to the HTTP headers in the "IncomingHttpRequestFilter()" callback
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 Apr 2016 16:26:22 +0200
parents b1291df2f780
children ef1e9856c26f
comparison
equal deleted inserted replaced
1958:c746e2d42ac8 1959:45c4387a379c
54 } 54 }
55 55
56 virtual bool IsAllowed(HttpMethod method, 56 virtual bool IsAllowed(HttpMethod method,
57 const char* uri, 57 const char* uri,
58 const char* ip, 58 const char* ip,
59 const char* username) const = 0; 59 const char* username,
60 const IHttpHandler::Arguments& httpHeaders) const = 0;
60 }; 61 };
61 62
62 63
63 class IHttpExceptionFormatter 64 class IHttpExceptionFormatter
64 { 65 {