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
if server is ctrl-c killed client does not shutdown. Not a huge issue but super easy to fix. In read thread do something like:
ret = read();
if(ret == 0)
{
_connActive = 0;
pthread_exit(NULL);
}
if server is ctrl-c killed client does not shutdown. Not a huge issue but super easy to fix. In read thread do something like:
ret = read();
if(ret == 0)
{
_connActive = 0;
pthread_exit(NULL);
}