Return the currently selected ALPN protocol as a string, or ``None`` if a next protocol was not negotiated or if ALPN is not supported by one of the peers.
(self)
| 921 | ) |
| 922 | |
| 923 | def selected_alpn_protocol(self): |
| 924 | """Return the currently selected ALPN protocol as a string, or ``None`` |
| 925 | if a next protocol was not negotiated or if ALPN is not supported by one |
| 926 | of the peers.""" |
| 927 | return self._sslobj.selected_alpn_protocol() |
| 928 | |
| 929 | def cipher(self): |
| 930 | """Return the currently selected cipher as a 3-tuple ``(name, |
no outgoing calls