36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Network module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#include <Nazara/Network/IpAddress.hpp>
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
|
|
namespace Nz
|
|
{
|
|
class IpAddressImpl
|
|
{
|
|
public:
|
|
using SockAddrBuffer = std::array<UInt8, sizeof(sockaddr_in6)>;
|
|
|
|
IpAddressImpl() = delete;
|
|
~IpAddressImpl() = delete;
|
|
|
|
static IpAddress FromAddrinfo(const addrinfo* info);
|
|
#if NAZARA_CORE_WINDOWS_VISTA
|
|
static IpAddress FromAddrinfo(const addrinfoW* info);
|
|
#endif
|
|
static IpAddress FromSockAddr(const sockaddr* address);
|
|
static IpAddress FromSockAddr(const sockaddr_in* addressv4);
|
|
static IpAddress FromSockAddr(const sockaddr_in6* addressv6);
|
|
|
|
static bool ResolveAddress(const IpAddress& ipAddress, String* hostname, String* service, ResolveError* error);
|
|
static std::vector<HostnameInfo> ResolveHostname(NetProtocol procol, const String& hostname, const String& service, ResolveError* error);
|
|
|
|
static socklen_t ToSockAddr(const IpAddress& ipAddress, void* buffer);
|
|
static NetProtocol TranslatePFToNetProtocol(int family);
|
|
static SocketType TranslateSockToNetProtocol(int socketType);
|
|
static ResolveError TranslateWSAErrorToResolveError(int error);
|
|
};
|
|
}
|