comparison OrthancFramework/Sources/DicomNetworking/DicomAssociationParameters.h @ 5643:b1a18218860c

2 new configurations: DicomTlsMinimumProtocolVersion + DicomTlsCiphersAccepted
author Alain Mazy <am@orthanc.team>
date Fri, 31 May 2024 16:56:35 +0200
parents f7adfb22e20e
children
comparison
equal deleted inserted replaced
5642:95e282478cda 5643:b1a18218860c
126 static unsigned int GetDefaultMaximumPduLength(); 126 static unsigned int GetDefaultMaximumPduLength();
127 127
128 static void SetDefaultRemoteCertificateRequired(bool required); 128 static void SetDefaultRemoteCertificateRequired(bool required);
129 129
130 static bool GetDefaultRemoteCertificateRequired(); 130 static bool GetDefaultRemoteCertificateRequired();
131
132 static void SetMinimumTlsVersion(unsigned int version);
133
134 static unsigned int GetMinimumTlsVersion();
135
136 static void SetAcceptedCiphers(const std::set<std::string>& acceptedCiphers);
137
138 static const std::set<std::string>& GetAcceptedCiphers();
131 }; 139 };
132 } 140 }