Closed Yaakov-Belch closed 7 months ago
Fix bug #1241: asyncio-server.py example is not working correctly.
The bug was caused by not updating the Flow Control Window when receiving data. The necessary steps are documented here:
In short, all that needs to be done is:
conn.acknowledge_received_data()
event.flow_controlled_length
DataReceived
Fix bug #1241: asyncio-server.py example is not working correctly.
The bug was caused by not updating the Flow Control Window when receiving data. The necessary steps are documented here:
In short, all that needs to be done is:
conn.acknowledge_received_data()
when data has been received.event.flow_controlled_length
from theDataReceived
event to this function.