im just wondering how you use send() and recv()
like:
bool blah()
{
if(recv(send("10.1.1.1", "HI"), szBuffer, sizeof(szBuffer))
{
MessageBox(NULL, "WORKED", "??", MB_OK);
return true;
}
else
{
MessageBox(NULL, "FAIL", "??", MB_OK);
return false;
}
}
i know that wouldnt compile but you get the point?