0b662d60fc
and let other function call the new internal function gethostentbyname_r Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> Change-Id: Ic6137d6cf03f75d6ed33e23bf04ae74b7264e682
92 lines
3.9 KiB
C
92 lines
3.9 KiB
C
/****************************************************************************
|
|
* libs/libc/netdb/lib_gethostbynamer.c
|
|
*
|
|
* Copyright (C) 2015, 2018 Gregory Nutt. All rights reserved.
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#ifdef CONFIG_LIBC_NETDB
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: gethostbyname_r
|
|
*
|
|
* Description:
|
|
* The gethostbyname_r() function returns a structure of type hostent for
|
|
* the given host name. Here name is either a hostname, or an IPv4 address
|
|
* in standard dot notation (as for inet_addr(3)), or an IPv6 address in
|
|
* colon (and possibly dot) notation.
|
|
*
|
|
* If name is an IPv4 or IPv6 address, no lookup is performed and
|
|
* gethostbyname_r() simply copies name into the h_name field
|
|
* and its struct in_addr equivalent into the h_addr_list[0] field of the
|
|
* returned hostent structure.
|
|
*
|
|
* gethostname_r() is *not* POSIX but is similar to a Glibc extension and
|
|
* is used internally by NuttX to implement the POSIX gethostname().
|
|
*
|
|
* Input Parameters:
|
|
* name - The name of the host to find.
|
|
* host - Caller provided location to return the host data.
|
|
* buf - Caller provided buffer to hold string data associated with the
|
|
* host data.
|
|
* buflen - The size of the caller-provided buffer
|
|
* result - There host entry returned in the event of a success.
|
|
* h_errnop - There h_errno value returned in the event of a failure.
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success, -1 (ERROR) is returned on a failure
|
|
* with the returned h_errno value provided the reason for the failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int gethostbyname_r(FAR const char *name,
|
|
FAR struct hostent *host, FAR char *buf,
|
|
size_t buflen, FAR struct hostent **result,
|
|
FAR int *h_errnop)
|
|
{
|
|
return gethostbyname2_r(name, AF_UNSPEC,
|
|
host, buf, buflen, result, h_errnop);
|
|
}
|
|
|
|
#endif /* CONFIG_LIBC_NETDB */
|