comparison Core/HttpServer/MongooseServer.h @ 473:c9a5d72f8481

changing the namespace of HTTP enumerations
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 15 Jul 2013 17:22:13 +0200
parents 63f707278fc8
children 2d0a347e8cfc
comparison
equal deleted inserted replaced
472:722b56b99093 473:c9a5d72f8481
49 public: 49 public:
50 virtual ~IIncomingHttpRequestFilter() 50 virtual ~IIncomingHttpRequestFilter()
51 { 51 {
52 } 52 }
53 53
54 virtual bool IsAllowed(Orthanc_HttpMethod method, 54 virtual bool IsAllowed(HttpMethod method,
55 const char* uri, 55 const char* uri,
56 const char* ip, 56 const char* ip,
57 const char* username) const = 0; 57 const char* username) const = 0;
58 }; 58 };
59 59