remove sleep calls

This commit is contained in:
jsorg71 2006-12-10 02:33:18 +00:00
parent 345f21c86d
commit 78115f10e2
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ lib_recv(struct vnc* v, char* data, int len)
{
return 1;
}
g_sleep(1);
g_tcp_can_recv(v->sck, 10);
}
else
{
@ -102,7 +102,7 @@ lib_send(struct vnc* v, char* data, int len)
{
return 1;
}
g_sleep(1);
g_tcp_can_send(v->sck, 10);
}
else
{