getline fix in chat program
This commit is contained in:
parent
816dced937
commit
58efe7fdd3
|
@ -59,10 +59,15 @@ void chat(Client client)
|
||||||
{
|
{
|
||||||
client.Recv(msgRecv);
|
client.Recv(msgRecv);
|
||||||
|
|
||||||
cout<< "Server: " << msgRecv << endl;
|
cout<< "Client 2: " << msgRecv << endl;
|
||||||
|
|
||||||
cin.getline(msgSend , 255 , '\n');
|
cin.getline(msgSend , 255 , '\n');
|
||||||
|
|
||||||
|
if(strlen(msgSend) < 1)
|
||||||
|
{
|
||||||
|
strcpy_s(msgSend , " ");
|
||||||
|
}
|
||||||
|
|
||||||
if(msgSend != "exit")
|
if(msgSend != "exit")
|
||||||
{
|
{
|
||||||
client.Send(msgSend);
|
client.Send(msgSend);
|
||||||
|
@ -73,6 +78,8 @@ void chat(Client client)
|
||||||
chatDone = true;
|
chatDone = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cin.clear();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue