You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/net/sock_addr.hpp

61 lines
1.3 KiB
C++

#pragma once
#include <netinet/in.h>
#include <string_view>
#include <string>
namespace llarp
{
/// A simple SockAddr wrapper which provides a sockaddr_in (IPv4). Memory management is handled
/// in constructor and destructor (if needed) and copying is disabled.
struct SockAddr
{
SockAddr();
SockAddr(uint8_t a, uint8_t b, uint8_t c, uint8_t d);
SockAddr(uint8_t a, uint8_t b, uint8_t c, uint8_t d, uint16_t port);
SockAddr(std::string_view addr);
SockAddr(const SockAddr&);
SockAddr&
operator=(const SockAddr&) const;
SockAddr(const sockaddr& addr);
SockAddr(const sockaddr_in& addr);
operator const sockaddr*() const;
void
fromString(std::string_view str);
std::string
toString() const;
/// Returns true if this is an empty SockAddr, defined by having no IP address set. An empty IP
/// address with a valid port is still considered empty.
///
/// @return true if this is empty, false otherwise
bool
isEmpty() const;
void
setIPv4(uint8_t a, uint8_t b, uint8_t c, uint8_t d);
void
setPort(uint16_t port);
uint16_t
getPort() const;
private:
bool m_empty = true;
sockaddr_in6 m_addr;
void
init();
};
std::ostream&
operator<<(std::ostream& out, const SockAddr& address);
} // namespace llarp