diff --git a/bakanet/src/bakanet/ip_address.cpp b/bakanet/src/bakanet/ip_address.cpp index 1ecb8d7..cb17a9b 100644 --- a/bakanet/src/bakanet/ip_address.cpp +++ b/bakanet/src/bakanet/ip_address.cpp @@ -1,4 +1,5 @@ #include "ip_address.h" +#include namespace Bk::Net { IpAddress::IpAddress(const char* ip) @@ -6,9 +7,4 @@ namespace Bk::Net { { if (inet_pton(AF_INET, str, &bytes) <= 0) perror("Bad IP"); } - - void IpAddress::from_dns(char* dns) - { - - } } \ No newline at end of file