comparison OrthancServer/DicomProtocol/IMoveRequestHandler.h @ 2222:21713ce8717b

Fix handling of Move Originator AET and ID in C-MOVE SCP
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Dec 2016 14:34:33 +0100
parents 21fcfc428dc2
children a3a65de1840f
comparison
equal deleted inserted replaced
2221:e7beca979562 2222:21713ce8717b
65 public: 65 public:
66 virtual ~IMoveRequestHandler() 66 virtual ~IMoveRequestHandler()
67 { 67 {
68 } 68 }
69 69
70 virtual IMoveRequestIterator* Handle(const std::string& target, 70 virtual IMoveRequestIterator* Handle(const std::string& targetAet,
71 const DicomMap& input, 71 const DicomMap& input,
72 const std::string& remoteIp, 72 const std::string& originatorIp,
73 const std::string& remoteAet, 73 const std::string& originatorAet,
74 const std::string& calledAet, 74 const std::string& calledAet,
75 uint16_t messageId) = 0; 75 uint16_t originatorId) = 0;
76 }; 76 };
77 77
78 } 78 }