MCPcopy Index your code
hub / github.com/python/cpython / selected_alpn_protocol

Method selected_alpn_protocol

Lib/ssl.py:1210–1215  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1208
1209 @_sslcopydoc
1210 def selected_alpn_protocol(self):
1211 self._checkClosed()
1212 if self._sslobj is None or not _ssl.HAS_ALPN:
1213 return None
1214 else:
1215 return self._sslobj.selected_alpn_protocol()
1216
1217 @_sslcopydoc
1218 def cipher(self):

Callers

nothing calls this directly

Calls 2

_checkClosedMethod · 0.95

Tested by

no test coverage detected