简体   繁体   中英

Until when does NetworkStream.Write block?

I can think of these possible answers:

  • Until the data is written to some internal buffer in the IP stack.
  • Until the data is sent over the wire.
  • Until a confirmation of reception is received from the other machine.

Until data is written to the send buffer on the sender side.
So if buffer is full, it will block.

The send buffer can be full if it didn't transmit data yet, because of network issues or because receive buffer is full on the receiver side.

There is an experiment you can conduct: make a sender and receiver, set sender's socket send buffer to something small and receiver's receive buffer to something small to.

Start sending, accept connection on the receiver side, but don't receive. The socket will be blocked when the sent bytes number is about SenderSendBuffer + ReceiverReceiveBuffer.

NetworkStream does not buffer data. Ultimately, a call to NetworkStream.Write translates into socket send function call. MSDN article for this function says:

The successful completion of a send function does not indicate that the data was successfully delivered and received to the recipient. This function only indicates the data was successfully sent.

Does this answer your question?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM