comparison 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
comparison
equal deleted inserted replaced
1160:80671157d051 1163:3db41779d8f9
175 else 175 else
176 { 176 {
177 return true; 177 return true;
178 } 178 }
179 } 179 }
180
181 virtual bool IsAllowedTransferSyntax(const std::string& callingAet,
182 TransferSyntax syntax)
183 {
184 // TODO - https://trello.com/c/8GxcTR0n
185 return true;
186 }
180 }; 187 };
181 188
182 189
183 class MyIncomingHttpRequestFilter : public IIncomingHttpRequestFilter 190 class MyIncomingHttpRequestFilter : public IIncomingHttpRequestFilter
184 { 191 {