comparison OrthancServer/Sources/OrthancHttpHandler.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
54 RequestOrigin origin, 54 RequestOrigin origin,
55 const char* remoteIp, 55 const char* remoteIp,
56 const char* username, 56 const char* username,
57 HttpMethod method, 57 HttpMethod method,
58 const UriComponents& uri, 58 const UriComponents& uri,
59 const Arguments& headers); 59 const HttpToolbox::Arguments& headers);
60 60
61 virtual bool Handle(HttpOutput& output, 61 virtual bool Handle(HttpOutput& output,
62 RequestOrigin origin, 62 RequestOrigin origin,
63 const char* remoteIp, 63 const char* remoteIp,
64 const char* username, 64 const char* username,
65 HttpMethod method, 65 HttpMethod method,
66 const UriComponents& uri, 66 const UriComponents& uri,
67 const Arguments& headers, 67 const HttpToolbox::Arguments& headers,
68 const GetArguments& getArguments, 68 const HttpToolbox::GetArguments& getArguments,
69 const void* bodyData, 69 const void* bodyData,
70 size_t bodySize); 70 size_t bodySize);
71 71
72 void Register(IHttpHandler& handler, 72 void Register(IHttpHandler& handler,
73 bool isOrthancRestApi); 73 bool isOrthancRestApi);