(self)
| 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): |
nothing calls this directly
no test coverage detected