comparison OrthancServer/QueryRetrieveHandler.cpp @ 3874:2effa961f67f transcoding

forcing use of DicomAssociationParameters if creating an SCU
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 30 Apr 2020 15:00:20 +0200
parents 138d0dde41b5
children
comparison
equal deleted inserted replaced
3873:ae5bdde751fd 3874:2effa961f67f
80 80
81 // Secondly, possibly fix the query with the user-provider Lua callback 81 // Secondly, possibly fix the query with the user-provider Lua callback
82 FixQueryLua(fixed, context_, modality_.GetApplicationEntityTitle()); 82 FixQueryLua(fixed, context_, modality_.GetApplicationEntityTitle());
83 83
84 { 84 {
85 DicomControlUserConnection connection(localAet_, modality_); 85 DicomAssociationParameters params(localAet_, modality_);
86 DicomControlUserConnection connection(params);
86 connection.Find(answers_, level_, fixed, findNormalized_); 87 connection.Find(answers_, level_, fixed, findNormalized_);
87 } 88 }
88 89
89 done_ = true; 90 done_ = true;
90 } 91 }