mirror of
https://github.com/ChronosX88/netsukuku.git
synced 2024-11-22 10:12:18 +00:00
Maybe it will work now?
This commit is contained in:
parent
201b69221e
commit
2c1bdf5990
@ -1110,6 +1110,7 @@ inet_sendto(int s, const void *msg, size_t len, int flags,
|
||||
{
|
||||
ssize_t err;
|
||||
char *ipv4_addr;
|
||||
size_t maxlen;
|
||||
if ((err = sendto(s, msg, len, flags, to, tolen)) == -1) {
|
||||
switch (errno) {
|
||||
case EMSGSIZE:
|
||||
@ -1123,7 +1124,7 @@ inet_sendto(int s, const void *msg, size_t len, int flags,
|
||||
"and: %s", to->sa_family,
|
||||
inet_ntop(to->sa_family,
|
||||
&(((struct sockaddr_in*)to)->sin_addr),
|
||||
ipv4_addr, sizeof ipv4_addr),
|
||||
ipv4_addr, maxlen),
|
||||
strerror(errno));
|
||||
default:
|
||||
error("inet_sendto: Cannot send(): %s", strerror(errno));
|
||||
|
Loading…
Reference in New Issue
Block a user