2001-05-16 15:40:51 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini xgethostbyname implementation.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>.
|
|
|
|
*
|
2006-07-10 11:41:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-05-16 15:40:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <netdb.h>
|
2001-05-16 17:05:03 +00:00
|
|
|
#include "libbb.h"
|
|
|
|
|
2001-05-16 15:40:51 +00:00
|
|
|
struct hostent *xgethostbyname(const char *name)
|
|
|
|
{
|
2006-11-21 20:35:22 +00:00
|
|
|
struct hostent *retval = gethostbyname(name);
|
|
|
|
if (!retval)
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_herror_msg_and_die("%s", name);
|
2001-05-16 15:40:51 +00:00
|
|
|
return retval;
|
|
|
|
}
|