X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=octopi%2Flibrary%2Fsockets%2Ftcpip_stack.cpp;h=bb144e8859a84d3b077c81292d668f8104c552ab;hb=d0294bb5b3d4187f97c28ee37c163de71d4c85e1;hp=f45ea6aaf73557705066bb1abf47e76f55a2ecdb;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/octopi/library/sockets/tcpip_stack.cpp b/octopi/library/sockets/tcpip_stack.cpp index f45ea6aa..bb144e88 100644 --- a/octopi/library/sockets/tcpip_stack.cpp +++ b/octopi/library/sockets/tcpip_stack.cpp @@ -251,7 +251,7 @@ bool tcpip_stack::enumerate_adapters(machine_uid_array &ip_addresses, sockaddr tcpip_stack::convert(const internet_address &make_from) { -// FUNCDEF("convert [to sockaddr]"); + FUNCDEF("convert [to sockaddr]"); sockaddr_in new_socket; // our socket. memset(&new_socket, 0, sizeof(new_socket)); // clear it out. new_socket.sin_family = AF_INET; @@ -308,7 +308,7 @@ byte_array tcpip_stack::full_resolve(const astring &hostname, bool tcpip_stack::resolve_any(const astring &hostname, internet_address &to_return) const { -// FUNCDEF("resolve_any"); + FUNCDEF("resolve_any"); to_return = internet_address(); if (!hostname) return false; // blank hostnames go nowhere. astring full_host; @@ -324,7 +324,7 @@ bool tcpip_stack::resolve_any(const astring &hostname, astring tcpip_stack::dns_resolve(const astring &hostname) const { -// FUNCDEF("dns_resolve"); + FUNCDEF("dns_resolve"); if (!hostname) return ""; // blank hostnames go nowhere. if (hostname.iequals("local") || hostname.iequals("localhost")) { return "127.0.0.1";