Adds errno and err reporting to inet_sendto.

This commit is contained in:
MissValeska 2014-10-21 01:18:26 -07:00
parent 7953b9af92
commit d6986b3f4d

View File

@ -1121,7 +1121,7 @@ inet_sendto(int s, const void *msg, size_t len, int flags,
inet_send(s, msg, len/2, flags); inet_send(s, msg, len/2, flags);
err=inet_send(s, (const char *)msg+(len/2), err=inet_send(s, (const char *)msg+(len/2),
len-(len/2), flags); len-(len/2), flags);
error("\nEMSGSIZE inet_sendto testing.\n"); error("\nsendto error after fragmention is: %d, err is: %d \n", errno, err);
break; break;
case EFAULT: case EFAULT:
error("The value of to is: %d", to); error("The value of to is: %d", to);