(self, buflen: int = 1024, flags: int = 0)
| 82 | return self._wrap_ssl_read(len, buffer) |
| 83 | |
| 84 | def recv(self, buflen: int = 1024, flags: int = 0) -> int | bytes: |
| 85 | if flags != 0: |
| 86 | raise ValueError(class="st">"non-zero flags not allowed in calls to recv") |
| 87 | return self._wrap_ssl_read(buflen) |
| 88 | |
| 89 | def recv_into( |
| 90 | self, |