Issue #8109: The ssl module now has support for server-side SNI, thanks to a :meth:`SSLContext.set_servername_callback` method.
Patch by Daniel Black.
diff --git a/Misc/ACKS b/Misc/ACKS
index 899668e..a09b5ea 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -116,6 +116,7 @@
 Philippe Biondi
 Stuart Bishop
 Roy Bixler
+Daniel Black
 Jonathan Black
 Renaud Blanch
 Mike Bland
diff --git a/Misc/NEWS b/Misc/NEWS
index 25dbb89..cd1e80d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -204,6 +204,10 @@
 Library
 -------
 
+- Issue #8109: The ssl module now has support for server-side SNI, thanks
+  to a :meth:`SSLContext.set_servername_callback` method.  Patch by Daniel
+  Black.
+
 - Issue #16860: In tempfile, use O_CLOEXEC when available to set the
   close-on-exec flag atomically.