update comment

This commit is contained in:
yggverse 2024-12-01 13:09:22 +02:00
parent 3fbd6ff3e3
commit 41d7d8e4f3

View file

@ -100,9 +100,9 @@ impl Client {
// Setters // Setters
/// Change `session-resumption-enabled` property value to apply new certificate option in runtime /// Change `session-resumption-enabled` property (`false` by default)
/// https://www.gnutls.org/manual/html_node/Session-resumption.html /// * [Gemini specification](https://geminiprotocol.net/docs/protocol-specification.gmi#client-certificates)
/// * disabled by default /// * [GnuTLS manual](https://www.gnutls.org/manual/html_node/Session-resumption.html)
pub fn set_session_resumption(&mut self, is_enabled: bool) { pub fn set_session_resumption(&mut self, is_enabled: bool) {
self.is_session_resumption = is_enabled self.is_session_resumption = is_enabled
} }