File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ I'm not going to talk about it here, except to warn you that you need to use
153153there, you may wait forever for the reply, because the request may still be in
154154your output buffer.
155155
156- Now we come the major stumbling block of sockets - ``send `` and ``recv `` operate
156+ Now we come to the major stumbling block of sockets - ``send `` and ``recv `` operate
157157on the network buffers. They do not necessarily handle all the bytes you hand
158158them (or expect from them), because their major focus is handling the network
159159buffers. In general, they return when the associated network buffers have been
@@ -164,7 +164,7 @@ been completely dealt with.
164164When a ``recv `` returns 0 bytes, it means the other side has closed (or is in
165165the process of closing) the connection. You will not receive any more data on
166166this connection. Ever. You may be able to send data successfully; I'll talk
167- about that some on the next page .
167+ more about this later .
168168
169169A protocol like HTTP uses a socket for only one transfer. The client sends a
170170request, then reads a reply. That's it. The socket is discarded. This means that
You can’t perform that action at this time.
0 commit comments