comparison OrthancServer/OrthancMoveRequestHandler.h @ 1573:3309878b3e16

more information about the origin of requests submitted to the DICOM handlers
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 25 Aug 2015 13:05:22 +0200
parents 6e7e5ed91c2d
children 3bcb01028107
comparison
equal deleted inserted replaced
1572:904096e7367e 1573:3309878b3e16
49 OrthancMoveRequestHandler(ServerContext& context) : 49 OrthancMoveRequestHandler(ServerContext& context) :
50 context_(context) 50 context_(context)
51 { 51 {
52 } 52 }
53 53
54 virtual IMoveRequestIterator* Handle(const std::string& target, 54 virtual IMoveRequestIterator* Handle(const std::string& targetAet,
55 const DicomMap& input); 55 const DicomMap& input,
56 const std::string& remoteIp,
57 const std::string& remoteAet);
56 }; 58 };
57 } 59 }