# 50.012 Lecture 10
## TCP Flow Control


The information about the receiver buffer is sent by the receiver by including rwnd value in the TCP header of receiver-to-sender segments.
This is so that the sender will regulate the sending speed.
`RcvBuffer` is set via socket option. A lot of OS usually automatically adjust this value.
Sender limits the amount of unACKed data to receiver's rwnd value.
This is to guarantee receiver buffer will not overflow.
Even when `rwnd` is zero, in practice, TCP will just announce a very small value (e.g. 1).