comparison Plugins/Engine/OrthancPlugins.cpp @ 3395:0ce9b4f5fdf5

new abstraction: IHttpHandler::CreateStreamHandler()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 06 Jun 2019 18:54:27 +0200
parents 2cd0369a156f
children 4981405e6c5c
comparison
equal deleted inserted replaced
3394:2f82ef41bf5a 3395:0ce9b4f5fdf5
4007 { 4007 {
4008 (*it) (); 4008 (*it) ();
4009 } 4009 }
4010 } 4010 }
4011 } 4011 }
4012
4013
4014 IHttpHandler::IStream* OrthancPlugins::CreateStreamHandler(RequestOrigin origin,
4015 const char* remoteIp,
4016 const char* username,
4017 HttpMethod method,
4018 const UriComponents& uri,
4019 const Arguments& headers)
4020 {
4021 // TODO - Plugins to install a handler for multipart body.
4022
4023 return NULL;
4024 }
4012 } 4025 }