Work in progress ...

FossilOrigin-Name: a76e8760f309d36aad22507f961ac5a03f46df9ee585c2f8601ee0a5a088738e
This commit is contained in:
7u83@mail.ru
2015-02-01 15:55:45 +00:00
parent 84e6d01348
commit c851831463
23 changed files with 236 additions and 68 deletions

View File

@ -20,13 +20,15 @@ int conn_recv_packet(struct conn* conn,uint8_t *buf,int len)
if (errno == EWOULDBLOCK)
{
printf("would block\n");
// continue;
}
if ( errno==EAGAIN )
{
printf("again\n");
}
perror("recv");
printf("Return n %d\n",n);
return n;
}
}