You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fixed assert arguments order
Signed-off-by: Daniel Tacalau <[email protected]>
* fix issue tokio-rs#1080, re-enabled and fixed UDP tests failing on Windows. One tests needed to have interests reregistered by calling a blocking recv. Another tests needed a Windows specific assert error message.
Signed-off-by: Daniel Tacalau <[email protected]>
* Added a note in the read/peek(_from) docs that on Windows if the data is larger than the buffer specified, the buffer is filled with the first part of the data, and peek returns the error WSAEMSGSIZE(10040). The excess data is lost. Make sure to always use a sufficiently large buffer to hold the maximum UDP packet size, which can be up to 64 kilobytes in size.
Signed-off-by: Daniel Tacalau <[email protected]>
* Added two new tests verifying ET behavior for UDP sockets events. These tests rely on having a blocking recv(_from) reregistering the socket and reseting the interests.
Signed-off-by: Daniel Tacalau <[email protected]>
* replaces 64 kilobytes with 65536 bytes in the notes
Signed-off-by: Daniel Tacalau <[email protected]>
* changes after review for new et tests: removed unneeded block, expect a writable before actual write
Signed-off-by: Daniel Tacalau <[email protected]>
0 commit comments