diff OrthancServer/main.cpp @ 1163:3db41779d8f9

abstraction to allow/prevent transfer syntaxes on AET basis
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 17 Sep 2014 17:23:08 +0200
parents 67c3c1e4a6e0
children 0a55d8eb194e
line wrap: on
line diff
--- a/OrthancServer/main.cpp	Wed Sep 17 11:57:28 2014 +0200
+++ b/OrthancServer/main.cpp	Wed Sep 17 17:23:08 2014 +0200
@@ -177,6 +177,13 @@
       return true;
     }
   }
+
+  virtual bool IsAllowedTransferSyntax(const std::string& callingAet,
+                                       TransferSyntax syntax)
+  {
+    // TODO - https://trello.com/c/8GxcTR0n
+    return true;
+  }
 };