diff OrthancServer/DicomProtocol/DicomUserConnection.h @ 1907:5011a597b6ce

Support of Move Originator Message ID (0000,1031) in C-Store responses driven by C-Move
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 Jan 2016 11:28:19 +0100
parents b1291df2f780
children f9f2aa1cc594
line wrap: on
line diff
--- a/OrthancServer/DicomProtocol/DicomUserConnection.h	Tue Jan 05 17:45:27 2016 +0100
+++ b/OrthancServer/DicomProtocol/DicomUserConnection.h	Thu Jan 07 11:28:19 2016 +0100
@@ -133,11 +133,15 @@
 
     bool Echo();
 
-    void Store(const char* buffer, size_t size);
+    void Store(const char* buffer, 
+               size_t size,
+               uint16_t moveMessageID);
 
-    void Store(const std::string& buffer);
+    void Store(const std::string& buffer,
+               uint16_t moveMessageID);
 
-    void StoreFile(const std::string& path);
+    void StoreFile(const std::string& path,
+                   uint16_t moveMessageID);
 
     void Find(DicomFindAnswers& result,
               ResourceType level,