Link to home
Start Free TrialLog in
Avatar of sukhoi35
sukhoi35

asked on

Reproduce WSAECONNABORTED - Error 10053

Hello,
I am currently testing a C++ application and the application crashed on receiving the above error. I have been asked to further investigate this issue but I could not locate ways to reproduce the above network error. Any suggestions?
ASKER CERTIFIED SOLUTION
Avatar of ikework
ikework
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
on the receive side of the socket check whether you are indeed allocating sufficient buffer space for receiving the data...

is it a blocking or non-blocking socket that you are implementing?
close the socket only after you have received all the data...
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sukhoi35
sukhoi35

ASKER

Thanks!