Return the current compression algorithm in use, or ``None`` if compression was not negotiated or not supported by one of the peers.
(self)
| 950 | return self._sslobj.shared_ciphers() |
| 951 | |
| 952 | def compression(self): |
| 953 | """Return the current compression algorithm in use, or ``None`` if |
| 954 | compression was not negotiated or not supported by one of the peers.""" |
| 955 | return self._sslobj.compression() |
| 956 | |
| 957 | def pending(self): |
| 958 | """Return the number of bytes that can be read immediately.""" |
no outgoing calls