comparison OrthancServer/ServerJobs/DicomModalityStoreJob.cpp @ 2871:6eebc2eb3168

refactoring serialization of RemoteModalityParameters
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Oct 2018 12:51:20 +0200
parents 8b00e4cb4a6b
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2870:716dd24974ef 2871:6eebc2eb3168
217 return false; 217 return false;
218 } 218 }
219 else 219 else
220 { 220 {
221 target[LOCAL_AET] = localAet_; 221 target[LOCAL_AET] = localAet_;
222 remote_.Serialize(target[REMOTE]); 222 remote_.Serialize(target[REMOTE], true /* force advanced format */);
223 target[MOVE_ORIGINATOR_AET] = moveOriginatorAet_; 223 target[MOVE_ORIGINATOR_AET] = moveOriginatorAet_;
224 target[MOVE_ORIGINATOR_ID] = moveOriginatorId_; 224 target[MOVE_ORIGINATOR_ID] = moveOriginatorId_;
225 return true; 225 return true;
226 } 226 }
227 } 227 }