comparison OrthancFramework/Sources/HttpServer/FilesystemHttpHandler.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 bf7b9edf6b81
children 82652c5fc04f
comparison
equal deleted inserted replaced
4329:9dc0e42f868b 4330:a01b1c9cbef4
46 RequestOrigin origin, 46 RequestOrigin origin,
47 const char* remoteIp, 47 const char* remoteIp,
48 const char* username, 48 const char* username,
49 HttpMethod method, 49 HttpMethod method,
50 const UriComponents& uri, 50 const UriComponents& uri,
51 const Arguments& headers) 51 const HttpToolbox::Arguments& headers)
52 { 52 {
53 return false; 53 return false;
54 } 54 }
55 55
56 virtual bool Handle( 56 virtual bool Handle(HttpOutput& output,
57 HttpOutput& output, 57 RequestOrigin origin,
58 RequestOrigin origin, 58 const char* remoteIp,
59 const char* remoteIp, 59 const char* username,
60 const char* username, 60 HttpMethod method,
61 HttpMethod method, 61 const UriComponents& uri,
62 const UriComponents& uri, 62 const HttpToolbox::Arguments& headers,
63 const Arguments& headers, 63 const HttpToolbox::GetArguments& arguments,
64 const GetArguments& arguments, 64 const void* /*bodyData*/,
65 const void* /*bodyData*/, 65 size_t /*bodySize*/);
66 size_t /*bodySize*/);
67 66
68 bool IsListDirectoryContent() const 67 bool IsListDirectoryContent() const
69 { 68 {
70 return listDirectoryContent_; 69 return listDirectoryContent_;
71 } 70 }