[the code is not syntactically correct, it just illustrates an idea that u can use in your code].
You can read the socket in a loop like this
string get_request;
while ((numRead = recv(SOCKET, buf, 1000, MSG_DONTWAIT)) != 0)
{
if (numRead < 0)
{
// error occured.
// break...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.