TCP flow control is used to control the rate of incoming data packets so that receiver of the traffic is not overwhelmed by the sender's rate. In other words, receiver can monitor this buffer size to indicate to the sender (or take some other actions) based on the current size of the buffer.
I want to know if Android provides an API to monitor, read this buffer? I am targeting to use these API to implement a android based client application (or a library) for adaptive http streaming. In adaptive streaming, client request for a different video chunk file based on the current bandwidth the client is experiencing. One of the approach to decide this bandwidth reading is flow control.
Any details or information in this context will be really useful. Thank you.