comparison OrthancServer/Sources/EmbeddedResourceHttpHandler.h @ 4330:a01b1c9cbef4

moving generic type definitions from IHttpHandler to HttpToolbox
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Nov 2020 14:39:10 +0100
parents 05b8fd21089c
children 82652c5fc04f
comparison
equal deleted inserted replaced
4329:9dc0e42f868b 4330:a01b1c9cbef4
55 RequestOrigin origin, 55 RequestOrigin origin,
56 const char* remoteIp, 56 const char* remoteIp,
57 const char* username, 57 const char* username,
58 HttpMethod method, 58 HttpMethod method,
59 const UriComponents& uri, 59 const UriComponents& uri,
60 const Arguments& headers) 60 const HttpToolbox::Arguments& headers)
61 { 61 {
62 return false; 62 return false;
63 } 63 }
64 64
65 virtual bool Handle(HttpOutput& output, 65 virtual bool Handle(HttpOutput& output,
66 RequestOrigin origin, 66 RequestOrigin origin,
67 const char* remoteIp, 67 const char* remoteIp,
68 const char* username, 68 const char* username,
69 HttpMethod method, 69 HttpMethod method,
70 const UriComponents& uri, 70 const UriComponents& uri,
71 const Arguments& headers, 71 const HttpToolbox::Arguments& headers,
72 const GetArguments& arguments, 72 const HttpToolbox::GetArguments& arguments,
73 const void* /*bodyData*/, 73 const void* /*bodyData*/,
74 size_t /*bodySize*/); 74 size_t /*bodySize*/);
75 }; 75 };
76 } 76 }