Implement Connection.recv_into.
diff --git a/doc/api/ssl.rst b/doc/api/ssl.rst
index a75af1f..b796e4a 100644
--- a/doc/api/ssl.rst
+++ b/doc/api/ssl.rst
@@ -614,6 +614,13 @@
by *bufsize*.
+.. py:method:: Connection.recv_into(buffer[, nbytes])
+
+ Receive data from the Connection and copy it directly into the provided
+ buffer. The return value is the number of bytes read from the connection.
+ The maximum amount of data to be received at once is specified by *nbytes*.
+
+
.. py:method:: Connection.bio_write(bytes)
If the Connection was created with a memory BIO, this method can be used to add