Socket-related cleanups

Improve error handling on Windows and reduce the size of the `Address` class
This commit is contained in:
sfan5 2021-12-29 23:01:26 +01:00 committed by GitHub
parent 05573d6d8d
commit 0ea8df4d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 114 additions and 156 deletions

View File

@ -1444,7 +1444,6 @@ bool Game::connectToServer(const GameStartData &start_data,
connect_address.Resolve(start_data.address.c_str()); connect_address.Resolve(start_data.address.c_str());
if (connect_address.isZero()) { // i.e. INADDR_ANY, IN6ADDR_ANY if (connect_address.isZero()) { // i.e. INADDR_ANY, IN6ADDR_ANY
//connect_address.Resolve("localhost");
if (connect_address.isIPv6()) { if (connect_address.isIPv6()) {
IPv6AddressBytes addr_bytes; IPv6AddressBytes addr_bytes;
addr_bytes.bytes[15] = 1; addr_bytes.bytes[15] = 1;

View File

@ -41,7 +41,9 @@ namespace fs
* Windows * * Windows *
***********/ ***********/
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501 #define _WIN32_WINNT 0x0501
#endif
#include <windows.h> #include <windows.h>
#include <shlwapi.h> #include <shlwapi.h>
#include <io.h> #include <io.h>

View File

@ -87,38 +87,31 @@ Address::Address(const IPv6AddressBytes *ipv6_bytes, u16 port)
setPort(port); setPort(port);
} }
// Equality (address family, address and port must be equal) // Equality (address family, IP and port must be equal)
bool Address::operator==(const Address &address) bool Address::operator==(const Address &other)
{ {
if (address.m_addr_family != m_addr_family || address.m_port != m_port) if (other.m_addr_family != m_addr_family || other.m_port != m_port)
return false; return false;
if (m_addr_family == AF_INET) { if (m_addr_family == AF_INET) {
return m_address.ipv4.sin_addr.s_addr == return m_address.ipv4.s_addr == other.m_address.ipv4.s_addr;
address.m_address.ipv4.sin_addr.s_addr;
} }
if (m_addr_family == AF_INET6) { if (m_addr_family == AF_INET6) {
return memcmp(m_address.ipv6.sin6_addr.s6_addr, return memcmp(m_address.ipv6.s6_addr,
address.m_address.ipv6.sin6_addr.s6_addr, 16) == 0; other.m_address.ipv6.s6_addr, 16) == 0;
} }
return false; return false;
} }
bool Address::operator!=(const Address &address)
{
return !(*this == address);
}
void Address::Resolve(const char *name) void Address::Resolve(const char *name)
{ {
if (!name || name[0] == 0) { if (!name || name[0] == 0) {
if (m_addr_family == AF_INET) { if (m_addr_family == AF_INET)
setAddress((u32)0); setAddress(static_cast<u32>(0));
} else if (m_addr_family == AF_INET6) { else if (m_addr_family == AF_INET6)
setAddress((IPv6AddressBytes *)0); setAddress(static_cast<IPv6AddressBytes*>(nullptr));
}
return; return;
} }
@ -126,9 +119,6 @@ void Address::Resolve(const char *name)
memset(&hints, 0, sizeof(hints)); memset(&hints, 0, sizeof(hints));
// Setup hints // Setup hints
hints.ai_socktype = 0;
hints.ai_protocol = 0;
hints.ai_flags = 0;
if (g_settings->getBool("enable_ipv6")) { if (g_settings->getBool("enable_ipv6")) {
// AF_UNSPEC allows both IPv6 and IPv4 addresses to be returned // AF_UNSPEC allows both IPv6 and IPv4 addresses to be returned
hints.ai_family = AF_UNSPEC; hints.ai_family = AF_UNSPEC;
@ -145,14 +135,13 @@ void Address::Resolve(const char *name)
if (resolved->ai_family == AF_INET) { if (resolved->ai_family == AF_INET) {
struct sockaddr_in *t = (struct sockaddr_in *)resolved->ai_addr; struct sockaddr_in *t = (struct sockaddr_in *)resolved->ai_addr;
m_addr_family = AF_INET; m_addr_family = AF_INET;
m_address.ipv4 = *t; m_address.ipv4 = t->sin_addr;
} else if (resolved->ai_family == AF_INET6) { } else if (resolved->ai_family == AF_INET6) {
struct sockaddr_in6 *t = (struct sockaddr_in6 *)resolved->ai_addr; struct sockaddr_in6 *t = (struct sockaddr_in6 *)resolved->ai_addr;
m_addr_family = AF_INET6; m_addr_family = AF_INET6;
m_address.ipv6 = *t; m_address.ipv6 = t->sin6_addr;
} else { } else {
freeaddrinfo(resolved); m_addr_family = 0;
throw ResolveError("");
} }
freeaddrinfo(resolved); freeaddrinfo(resolved);
} }
@ -163,47 +152,37 @@ std::string Address::serializeString() const
// windows XP doesnt have inet_ntop, maybe use better func // windows XP doesnt have inet_ntop, maybe use better func
#ifdef _WIN32 #ifdef _WIN32
if (m_addr_family == AF_INET) { if (m_addr_family == AF_INET) {
u8 a, b, c, d; return inet_ntoa(m_address.ipv4);
u32 addr;
addr = ntohl(m_address.ipv4.sin_addr.s_addr);
a = (addr & 0xFF000000) >> 24;
b = (addr & 0x00FF0000) >> 16;
c = (addr & 0x0000FF00) >> 8;
d = (addr & 0x000000FF);
return itos(a) + "." + itos(b) + "." + itos(c) + "." + itos(d);
} else if (m_addr_family == AF_INET6) { } else if (m_addr_family == AF_INET6) {
std::ostringstream os; std::ostringstream os;
os << std::hex;
for (int i = 0; i < 16; i += 2) { for (int i = 0; i < 16; i += 2) {
u16 section = (m_address.ipv6.sin6_addr.s6_addr[i] << 8) | u16 section = (m_address.ipv6.s6_addr[i] << 8) |
(m_address.ipv6.sin6_addr.s6_addr[i + 1]); (m_address.ipv6.s6_addr[i + 1]);
os << std::hex << section; os << section;
if (i < 14) if (i < 14)
os << ":"; os << ":";
} }
return os.str(); return os.str();
} else } else {
return std::string(""); return "";
}
#else #else
char str[INET6_ADDRSTRLEN]; char str[INET6_ADDRSTRLEN];
if (inet_ntop(m_addr_family, if (inet_ntop(m_addr_family, (void*) &m_address, str, sizeof(str)) == nullptr)
(m_addr_family == AF_INET) return "";
? (void *)&(m_address.ipv4.sin_addr) return str;
: (void *)&(m_address.ipv6.sin6_addr),
str, INET6_ADDRSTRLEN) == NULL) {
return std::string("");
}
return std::string(str);
#endif #endif
} }
struct sockaddr_in Address::getAddress() const struct in_addr Address::getAddress() const
{ {
return m_address.ipv4; // NOTE: NO PORT INCLUDED, use getPort() return m_address.ipv4;
} }
struct sockaddr_in6 Address::getAddress6() const struct in6_addr Address::getAddress6() const
{ {
return m_address.ipv6; // NOTE: NO PORT INCLUDED, use getPort() return m_address.ipv6;
} }
u16 Address::getPort() const u16 Address::getPort() const
@ -211,52 +190,39 @@ u16 Address::getPort() const
return m_port; return m_port;
} }
int Address::getFamily() const
{
return m_addr_family;
}
bool Address::isIPv6() const
{
return m_addr_family == AF_INET6;
}
bool Address::isZero() const bool Address::isZero() const
{ {
if (m_addr_family == AF_INET) { if (m_addr_family == AF_INET) {
return m_address.ipv4.sin_addr.s_addr == 0; return m_address.ipv4.s_addr == 0;
} }
if (m_addr_family == AF_INET6) { if (m_addr_family == AF_INET6) {
static const char zero[16] = {0}; static const char zero[16] = {0};
return memcmp(m_address.ipv6.sin6_addr.s6_addr, zero, 16) == 0; return memcmp(m_address.ipv6.s6_addr, zero, 16) == 0;
} }
return false; return false;
} }
void Address::setAddress(u32 address) void Address::setAddress(u32 address)
{ {
m_addr_family = AF_INET; m_addr_family = AF_INET;
m_address.ipv4.sin_family = AF_INET; m_address.ipv4.s_addr = htonl(address);
m_address.ipv4.sin_addr.s_addr = htonl(address);
} }
void Address::setAddress(u8 a, u8 b, u8 c, u8 d) void Address::setAddress(u8 a, u8 b, u8 c, u8 d)
{ {
m_addr_family = AF_INET; u32 addr = (a << 24) | (b << 16) | (c << 8) | d;
m_address.ipv4.sin_family = AF_INET; setAddress(addr);
u32 addr = htonl((a << 24) | (b << 16) | (c << 8) | d);
m_address.ipv4.sin_addr.s_addr = addr;
} }
void Address::setAddress(const IPv6AddressBytes *ipv6_bytes) void Address::setAddress(const IPv6AddressBytes *ipv6_bytes)
{ {
m_addr_family = AF_INET6; m_addr_family = AF_INET6;
m_address.ipv6.sin6_family = AF_INET6;
if (ipv6_bytes) if (ipv6_bytes)
memcpy(m_address.ipv6.sin6_addr.s6_addr, ipv6_bytes->bytes, 16); memcpy(m_address.ipv6.s6_addr, ipv6_bytes->bytes, 16);
else else
memset(m_address.ipv6.sin6_addr.s6_addr, 0, 16); memset(m_address.ipv6.s6_addr, 0, 16);
} }
void Address::setPort(u16 port) void Address::setPort(u16 port)
@ -268,23 +234,26 @@ void Address::print(std::ostream *s) const
{ {
if (m_addr_family == AF_INET6) if (m_addr_family == AF_INET6)
*s << "[" << serializeString() << "]:" << m_port; *s << "[" << serializeString() << "]:" << m_port;
else else if (m_addr_family == AF_INET)
*s << serializeString() << ":" << m_port; *s << serializeString() << ":" << m_port;
else
*s << "(undefined)";
} }
bool Address::isLocalhost() const bool Address::isLocalhost() const
{ {
if (isIPv6()) { if (isIPv6()) {
static const unsigned char localhost_bytes[] = { static const u8 localhost_bytes[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}; 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1};
static const unsigned char mapped_ipv4_localhost[] = { static const u8 mapped_ipv4_localhost[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0x7f, 0, 0, 0}; 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0x7f, 0, 0, 0};
auto addr = m_address.ipv6.sin6_addr.s6_addr; auto addr = m_address.ipv6.s6_addr;
return memcmp(addr, localhost_bytes, 16) == 0 || return memcmp(addr, localhost_bytes, 16) == 0 ||
memcmp(addr, mapped_ipv4_localhost, 13) == 0; memcmp(addr, mapped_ipv4_localhost, 13) == 0;
} }
return (m_address.ipv4.sin_addr.s_addr & 0xFF) == 0x7f; auto addr = ntohl(m_address.ipv4.s_addr);
return (addr >> 24) == 0x7f;
} }

View File

@ -36,9 +36,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "irrlichttypes.h" #include "irrlichttypes.h"
#include "networkexceptions.h" #include "networkexceptions.h"
class IPv6AddressBytes struct IPv6AddressBytes
{ {
public:
u8 bytes[16]; u8 bytes[16];
IPv6AddressBytes() { memset(bytes, 0, 16); } IPv6AddressBytes() { memset(bytes, 0, 16); }
}; };
@ -50,30 +49,34 @@ public:
Address(u32 address, u16 port); Address(u32 address, u16 port);
Address(u8 a, u8 b, u8 c, u8 d, u16 port); Address(u8 a, u8 b, u8 c, u8 d, u16 port);
Address(const IPv6AddressBytes *ipv6_bytes, u16 port); Address(const IPv6AddressBytes *ipv6_bytes, u16 port);
bool operator==(const Address &address); bool operator==(const Address &address);
bool operator!=(const Address &address); bool operator!=(const Address &address) { return !(*this == address); }
// Resolve() may throw ResolveError (address is unchanged in this case)
void Resolve(const char *name); struct in_addr getAddress() const;
struct sockaddr_in getAddress() const; struct in6_addr getAddress6() const;
unsigned short getPort() const; u16 getPort() const;
void setAddress(u32 address); int getFamily() const { return m_addr_family; }
void setAddress(u8 a, u8 b, u8 c, u8 d); bool isIPv6() const { return m_addr_family == AF_INET6; }
void setAddress(const IPv6AddressBytes *ipv6_bytes);
struct sockaddr_in6 getAddress6() const;
int getFamily() const;
bool isIPv6() const;
bool isZero() const; bool isZero() const;
void setPort(unsigned short port);
void print(std::ostream *s) const; void print(std::ostream *s) const;
std::string serializeString() const; std::string serializeString() const;
bool isLocalhost() const; bool isLocalhost() const;
// Resolve() may throw ResolveError (address is unchanged in this case)
void Resolve(const char *name);
void setAddress(u32 address);
void setAddress(u8 a, u8 b, u8 c, u8 d);
void setAddress(const IPv6AddressBytes *ipv6_bytes);
void setPort(u16 port);
private: private:
unsigned int m_addr_family = 0; unsigned short m_addr_family = 0;
union union
{ {
struct sockaddr_in ipv4; struct in_addr ipv4;
struct sockaddr_in6 ipv6; struct in6_addr ipv6;
} m_address; } m_address;
u16 m_port = 0; // Port is separate from sockaddr structures u16 m_port = 0; // Port is separate from sockaddr structures
}; };

View File

@ -23,14 +23,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <iostream> #include <iostream>
#include <cstdlib> #include <cstdlib>
#include <cstring> #include <cstring>
#include <cerrno>
#include <sstream>
#include <iomanip> #include <iomanip>
#include "util/string.h" #include "util/string.h"
#include "util/numeric.h" #include "util/numeric.h"
#include "constants.h" #include "constants.h"
#include "debug.h" #include "debug.h"
#include "settings.h"
#include "log.h" #include "log.h"
#ifdef _WIN32 #ifdef _WIN32
@ -42,9 +39,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <winsock2.h> #include <winsock2.h>
#include <ws2tcpip.h> #include <ws2tcpip.h>
#define LAST_SOCKET_ERR() WSAGetLastError() #define LAST_SOCKET_ERR() WSAGetLastError()
typedef SOCKET socket_t; #define SOCKET_ERR_STR(e) itos(e)
typedef int socklen_t; typedef int socklen_t;
#else #else
#include <cerrno>
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <netinet/in.h> #include <netinet/in.h>
@ -53,7 +51,7 @@ typedef int socklen_t;
#include <unistd.h> #include <unistd.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#define LAST_SOCKET_ERR() (errno) #define LAST_SOCKET_ERR() (errno)
typedef int socket_t; #define SOCKET_ERR_STR(e) strerror(e)
#endif #endif
// Set to true to enable verbose debug output // Set to true to enable verbose debug output
@ -113,7 +111,7 @@ bool UDPSocket::init(bool ipv6, bool noExceptions)
} }
throw SocketException(std::string("Failed to create socket: error ") + throw SocketException(std::string("Failed to create socket: error ") +
itos(LAST_SOCKET_ERR())); SOCKET_ERR_STR(LAST_SOCKET_ERR()));
} }
setTimeoutMs(0); setTimeoutMs(0);
@ -153,40 +151,40 @@ void UDPSocket::Bind(Address addr)
} }
if (addr.getFamily() != m_addr_family) { if (addr.getFamily() != m_addr_family) {
static const char *errmsg = const char *errmsg =
"Socket and bind address families do not match"; "Socket and bind address families do not match";
errorstream << "Bind failed: " << errmsg << std::endl; errorstream << "Bind failed: " << errmsg << std::endl;
throw SocketException(errmsg); throw SocketException(errmsg);
} }
int ret = 0;
if (m_addr_family == AF_INET6) { if (m_addr_family == AF_INET6) {
struct sockaddr_in6 address; struct sockaddr_in6 address;
memset(&address, 0, sizeof(address)); memset(&address, 0, sizeof(address));
address = addr.getAddress6();
address.sin6_family = AF_INET6; address.sin6_family = AF_INET6;
address.sin6_addr = addr.getAddress6();
address.sin6_port = htons(addr.getPort()); address.sin6_port = htons(addr.getPort());
if (bind(m_handle, (const struct sockaddr *)&address, ret = bind(m_handle, (const struct sockaddr *) &address,
sizeof(struct sockaddr_in6)) < 0) { sizeof(struct sockaddr_in6));
dstream << (int)m_handle << ": Bind failed: " << strerror(errno)
<< std::endl;
throw SocketException("Failed to bind socket");
}
} else { } else {
struct sockaddr_in address; struct sockaddr_in address;
memset(&address, 0, sizeof(address)); memset(&address, 0, sizeof(address));
address = addr.getAddress();
address.sin_family = AF_INET; address.sin_family = AF_INET;
address.sin_addr = addr.getAddress();
address.sin_port = htons(addr.getPort()); address.sin_port = htons(addr.getPort());
if (bind(m_handle, (const struct sockaddr *)&address, ret = bind(m_handle, (const struct sockaddr *) &address,
sizeof(struct sockaddr_in)) < 0) { sizeof(struct sockaddr_in));
dstream << (int)m_handle << ": Bind failed: " << strerror(errno) }
<< std::endl;
throw SocketException("Failed to bind socket"); if (ret < 0) {
} dstream << (int)m_handle << ": Bind failed: "
<< SOCKET_ERR_STR(LAST_SOCKET_ERR()) << std::endl;
throw SocketException("Failed to bind socket");
} }
} }
@ -233,13 +231,19 @@ void UDPSocket::Send(const Address &destination, const void *data, int size)
int sent; int sent;
if (m_addr_family == AF_INET6) { if (m_addr_family == AF_INET6) {
struct sockaddr_in6 address = destination.getAddress6(); struct sockaddr_in6 address = {0};
address.sin6_family = AF_INET6;
address.sin6_addr = destination.getAddress6();
address.sin6_port = htons(destination.getPort()); address.sin6_port = htons(destination.getPort());
sent = sendto(m_handle, (const char *)data, size, 0, sent = sendto(m_handle, (const char *)data, size, 0,
(struct sockaddr *)&address, sizeof(struct sockaddr_in6)); (struct sockaddr *)&address, sizeof(struct sockaddr_in6));
} else { } else {
struct sockaddr_in address = destination.getAddress(); struct sockaddr_in address = {0};
address.sin_family = AF_INET;
address.sin_addr = destination.getAddress();
address.sin_port = htons(destination.getPort()); address.sin_port = htons(destination.getPort());
sent = sendto(m_handle, (const char *)data, size, 0, sent = sendto(m_handle, (const char *)data, size, 0,
(struct sockaddr *)&address, sizeof(struct sockaddr_in)); (struct sockaddr *)&address, sizeof(struct sockaddr_in));
} }
@ -267,9 +271,9 @@ int UDPSocket::Receive(Address &sender, void *data, int size)
return -1; return -1;
u16 address_port = ntohs(address.sin6_port); u16 address_port = ntohs(address.sin6_port);
IPv6AddressBytes bytes; const auto *bytes = reinterpret_cast<IPv6AddressBytes*>
memcpy(bytes.bytes, address.sin6_addr.s6_addr, 16); (address.sin6_addr.s6_addr);
sender = Address(&bytes, address_port); sender = Address(bytes, address_port);
} else { } else {
struct sockaddr_in address; struct sockaddr_in address;
memset(&address, 0, sizeof(address)); memset(&address, 0, sizeof(address));
@ -341,7 +345,12 @@ bool UDPSocket::WaitData(int timeout_ms)
if (result == 0) if (result == 0)
return false; return false;
if (result < 0 && (errno == EINTR || errno == EBADF)) { int e = LAST_SOCKET_ERR();
#ifdef _WIN32
if (result < 0 && (e == WSAEINTR || e == WSAEBADF)) {
#else
if (result < 0 && (e == EINTR || e == EBADF)) {
#endif
// N.B. select() fails when sockets are destroyed on Connection's dtor // N.B. select() fails when sockets are destroyed on Connection's dtor
// with EBADF. Instead of doing tricky synchronization, allow this // with EBADF. Instead of doing tricky synchronization, allow this
// thread to exit but don't throw an exception. // thread to exit but don't throw an exception.
@ -349,18 +358,9 @@ bool UDPSocket::WaitData(int timeout_ms)
} }
if (result < 0) { if (result < 0) {
dstream << m_handle << ": Select failed: " << strerror(errno) dstream << (int)m_handle << ": Select failed: " << SOCKET_ERR_STR(e)
<< std::endl; << std::endl;
#ifdef _WIN32
int e = WSAGetLastError();
dstream << (int)m_handle << ": WSAGetLastError()=" << e << std::endl;
if (e == 10004 /* WSAEINTR */ || e == 10009 /* WSAEBADF */) {
infostream << "Ignoring WSAEINTR/WSAEBADF." << std::endl;
return false;
}
#endif
throw SocketException("Select failed"); throw SocketException("Select failed");
} else if (!FD_ISSET(m_handle, &readset)) { } else if (!FD_ISSET(m_handle, &readset)) {
// No data // No data

View File

@ -19,18 +19,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#pragma once #pragma once
#ifdef _WIN32
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#endif
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#endif
#include <ostream> #include <ostream>
#include <cstring> #include <cstring>
#include "address.h" #include "address.h"
@ -53,8 +41,6 @@ public:
bool init(bool ipv6, bool noExceptions = false); bool init(bool ipv6, bool noExceptions = false);
// void Close();
// bool IsOpen();
void Send(const Address &destination, const void *data, int size); void Send(const Address &destination, const void *data, int size);
// Returns -1 if there is no data // Returns -1 if there is no data
int Receive(Address &sender, void *data, int size); int Receive(Address &sender, void *data, int size);

View File

@ -507,8 +507,9 @@ void Server::start()
<< " \\/ \\/ \\/ \\/ \\/ " << std::endl; << " \\/ \\/ \\/ \\/ \\/ " << std::endl;
actionstream << "World at [" << m_path_world << "]" << std::endl; actionstream << "World at [" << m_path_world << "]" << std::endl;
actionstream << "Server for gameid=\"" << m_gamespec.id actionstream << "Server for gameid=\"" << m_gamespec.id
<< "\" listening on " << m_bind_addr.serializeString() << ":" << "\" listening on ";
<< m_bind_addr.getPort() << "." << std::endl; m_bind_addr.print(&actionstream);
actionstream << "." << std::endl;
} }
void Server::stop() void Server::stop()

View File

@ -97,11 +97,11 @@ void TestSocket::testIPv4Socket()
UASSERT(strncmp(sendbuffer, rcvbuffer, sizeof(sendbuffer)) == 0); UASSERT(strncmp(sendbuffer, rcvbuffer, sizeof(sendbuffer)) == 0);
if (address != Address(0, 0, 0, 0, port)) { if (address != Address(0, 0, 0, 0, port)) {
UASSERT(sender.getAddress().sin_addr.s_addr == UASSERT(sender.getAddress().s_addr ==
address.getAddress().sin_addr.s_addr); address.getAddress().s_addr);
} else { } else {
UASSERT(sender.getAddress().sin_addr.s_addr == UASSERT(sender.getAddress().s_addr ==
Address(127, 0, 0, 1, 0).getAddress().sin_addr.s_addr); Address(127, 0, 0, 1, 0).getAddress().s_addr);
} }
} }
@ -128,7 +128,7 @@ void TestSocket::testIPv6Socket()
socket6.Bind(address6); socket6.Bind(address6);
try { {
socket6.Send(Address(&bytes, port), sendbuffer, sizeof(sendbuffer)); socket6.Send(Address(&bytes, port), sendbuffer, sizeof(sendbuffer));
sleep_ms(50); sleep_ms(50);
@ -142,10 +142,8 @@ void TestSocket::testIPv6Socket()
} }
//FIXME: This fails on some systems //FIXME: This fails on some systems
UASSERT(strncmp(sendbuffer, rcvbuffer, sizeof(sendbuffer)) == 0); UASSERT(strncmp(sendbuffer, rcvbuffer, sizeof(sendbuffer)) == 0);
UASSERT(memcmp(sender.getAddress6().sin6_addr.s6_addr,
Address(&bytes, 0).getAddress6().sin6_addr.s6_addr, 16) == 0); UASSERT(memcmp(sender.getAddress6().s6_addr,
} catch (SendFailedException &e) { Address(&bytes, 0).getAddress6().s6_addr, 16) == 0);
errorstream << "IPv6 support enabled but not available!"
<< std::endl;
} }
} }