Return the current size of the write buffers.
(self)
| 170 | self._ssl_protocol._outgoing_high_water) |
| 171 | |
| 172 | def get_write_buffer_size(self): |
| 173 | """Return the current size of the write buffers.""" |
| 174 | return self._ssl_protocol._get_write_buffer_size() |
| 175 | |
| 176 | def set_read_buffer_limits(self, high=None, low=None): |
| 177 | """Set the high- and low-water limits for read flow control. |
nothing calls this directly
no test coverage detected