/* Web Polygraph http://www.web-polygraph.org/ * (C) 2003-2006 The Measurement Factory * Licensed under the Apache License, Version 2.0 */ #include "xstd/xstd.h" #include "xstd/String.h" #include "xstd/Dns.h" hostent *Dns::GetHostByName(const String &name) { return gethostbyname(name.cstr()); }