comparison OrthancServer/DicomProtocol/ReusableDicomUserConnection.h @ 1284:21ea32170764

Option "DicomAssociationCloseDelay" to set delay before closing DICOM association
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 03 Feb 2015 14:07:07 +0100
parents e21d1a5f5934
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1283:6066529e34c8 1284:21ea32170764
86 86
87 ReusableDicomUserConnection(); 87 ReusableDicomUserConnection();
88 88
89 virtual ~ReusableDicomUserConnection(); 89 virtual ~ReusableDicomUserConnection();
90 90
91 unsigned int GetMillisecondsBeforeClose() const 91 uint64_t GetMillisecondsBeforeClose() const
92 { 92 {
93 return static_cast<unsigned int>(timeBeforeClose_.total_milliseconds()); 93 return static_cast<uint64_t>(timeBeforeClose_.total_milliseconds());
94 } 94 }
95 95
96 void SetMillisecondsBeforeClose(unsigned int ms); 96 void SetMillisecondsBeforeClose(uint64_t ms);
97 97
98 const std::string& GetLocalApplicationEntityTitle() const; 98 const std::string& GetLocalApplicationEntityTitle() const;
99 99
100 void SetLocalApplicationEntityTitle(const std::string& aet); 100 void SetLocalApplicationEntityTitle(const std::string& aet);
101 }; 101 };