diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-10-26 02:43:33 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-10-26 02:43:33 +0100 |
commit | f57a43f33767082e574d6cb74480d09c80e72e64 (patch) | |
tree | fe4c013eac035ea1647898f3dfa2958b57622c95 /louloulibs/network | |
parent | 42a743faeb87b5c4d1dd19d828f92f786de96a83 (diff) | |
download | biboumi-f57a43f33767082e574d6cb74480d09c80e72e64.tar.gz biboumi-f57a43f33767082e574d6cb74480d09c80e72e64.tar.bz2 biboumi-f57a43f33767082e574d6cb74480d09c80e72e64.tar.xz biboumi-f57a43f33767082e574d6cb74480d09c80e72e64.zip |
Remove some more debug thing
Diffstat (limited to 'louloulibs/network')
-rw-r--r-- | louloulibs/network/resolver.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/louloulibs/network/resolver.cpp b/louloulibs/network/resolver.cpp index 5324191..8028c5a 100644 --- a/louloulibs/network/resolver.cpp +++ b/louloulibs/network/resolver.cpp @@ -101,7 +101,6 @@ void Resolver::on_resolved() void Resolver::fill_ares_addrinfo4(const struct hostent* hostent) { - std::cout << "fill_ares_addrinfo4" << this->port << std::endl; struct addrinfo* prev = this->cares_addrinfo; struct in_addr** address = reinterpret_cast<struct in_addr**>(hostent->h_addr_list); @@ -133,7 +132,6 @@ void Resolver::fill_ares_addrinfo4(const struct hostent* hostent) void Resolver::fill_ares_addrinfo6(const struct hostent* hostent) { - std::cout << "fill_ares_addrinfo6" << this->port << std::endl; struct addrinfo* prev = this->cares_addrinfo; struct in6_addr** address = reinterpret_cast<struct in6_addr**>(hostent->h_addr_list); |