From d66e11c9cefb02139d3bb2456f39dc1c218284ed Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Tue, 19 May 2020 00:38:04 -0400 Subject: [PATCH] Update documentation --- jetforce/tls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jetforce/tls.py b/jetforce/tls.py index ca801a4..9db0ae8 100644 --- a/jetforce/tls.py +++ b/jetforce/tls.py @@ -120,6 +120,7 @@ class GeminiCertificateOptions(CertificateOptions): Callback used by OpenSSL for ALPN support. Return the first matching protocol in our list of acceptable values. + This is not currently being used but I may want to add support later. """ for p in self._acceptableProtocols: if p in protocols: @@ -133,7 +134,8 @@ class GeminiCertificateOptions(CertificateOptions): We can inspect the servername requested by the client using conn.get_servername(), and attach an appropriate context using - conn.set_context(new_context). + conn.set_context(new_context). This is not currently being used but + I want to add support in the future. """ pass