From 246d4c985ccf44ae672bc39efd93aa7efcc9869f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 7 Apr 2022 00:46:48 +0200 Subject: [PATCH] doc: add missing article in session ticket section --- doc/api/tls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/tls.md b/doc/api/tls.md index 764491cf1d2b74..44b85004dec7b7 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -243,7 +243,7 @@ handlers. The servers encrypt the entire session state and send it to the client as a "ticket". When reconnecting, the state is sent to the server -in the initial connection. This mechanism avoids the need for server-side +in the initial connection. This mechanism avoids the need for a server-side session cache. If the server doesn't use the ticket, for any reason (failure to decrypt it, it's too old, etc.), it will create a new session and send a new ticket. See [RFC 5077][] for more information.