GDB stub progress

This commit is contained in:
momo5502
2025-01-12 16:03:41 +01:00
parent 8adc73de71
commit 9e268ea4dc
9 changed files with 159 additions and 50 deletions

View File

@@ -48,6 +48,14 @@ namespace network
address(const sockaddr_in6& addr);
address(const sockaddr* addr, socklen_t length);
address(const address&) = default;
address(address&&) noexcept = default;
address& operator=(const address&) = default;
address& operator=(address&&) noexcept = default;
~address() = default;
void set_ipv4(uint32_t ip);
void set_ipv4(const in_addr& addr);
void set_ipv6(const in6_addr& addr);