Update documentation

This commit is contained in:
Michael Lazar 2020-05-19 00:38:04 -04:00
parent 71ab30aea9
commit d66e11c9ce
1 changed files with 3 additions and 1 deletions

View File

@ -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