Mercurial > hg > orthanc
comparison Resources/Samples/Lua/TransferSyntaxDisable.lua @ 1164:0a55d8eb194e
Configuration/Lua to select the accepted C-Store SCP transfer syntaxes
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 18 Sep 2014 17:18:26 +0200 |
parents | |
children | cd213ebcaefd |
comparison
equal
deleted
inserted
replaced
1163:3db41779d8f9 | 1164:0a55d8eb194e |
---|---|
1 function IsDeflatedTransferSyntaxAccepted(aet, ip) | |
2 return false | |
3 end | |
4 | |
5 function IsJpegTransferSyntaxAccepted(aet, ip) | |
6 return false | |
7 end | |
8 | |
9 function IsJpeg2000TransferSyntaxAccepted(aet, ip) | |
10 return false | |
11 end | |
12 | |
13 function IsJpegLosslessTransferSyntaxAccepted(aet, ip) | |
14 return false | |
15 end | |
16 | |
17 function IsJpipTransferSyntaxAccepted(aet, ip) | |
18 return false | |
19 end | |
20 | |
21 function IsMpeg2TransferSyntaxAccepted(aet, ip) | |
22 return false | |
23 end | |
24 | |
25 function IsRleTransferSyntaxAccepted(aet, ip) | |
26 return false | |
27 end | |
28 | |
29 print('All special transfer syntaxes are now disallowed') |