File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/server/tracker/inspector/tls Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ enum_builder2! {
187187 ffdhe6144 => 259 ,
188188 ffdhe8192 => 260 ,
189189 X25519MLKEM768 => 4588 ,
190+ MLKEM1024 => 514 ,
190191 CECPQ2 => 16696 ,
191192 X25519Kyber768Draft00 => 25497 ,
192193 X25519Kyber512Draft00 => 65072 ,
Original file line number Diff line number Diff line change @@ -239,8 +239,8 @@ impl ClientHello {
239239 /// Sets the negotiated TLS version for this `ClientHello`.
240240 ///
241241 /// # Parameters
242- /// - `version`: An `Option<ProtocolVersion>` representing the negotiated TLS version.
243- /// If `Some`, the version is set; if `None`, no version was negotiated.
242+ /// - `version`: An `Option<ProtocolVersion>` representing the negotiated TLS version. If
243+ /// `Some`, the version is set; if `None`, no version was negotiated.
244244 pub fn set_tls_version_negotiated ( & mut self , version : Option < ProtocolVersion > ) {
245245 self . tls_version_negotiated = version. map ( u16:: from) . map ( TlsVersion :: from) ;
246246 }
You can’t perform that action at this time.
0 commit comments