zephyr/subsys/net/lib/sockets/sockets_misc.c

18 lines
253 B
C

/*
* Copyright (c) 2019 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <errno.h>
#include <net/socket.h>
int zsock_gethostname(char *buf, size_t len)
{
const char *p = net_hostname_get();
strncpy(buf, p, len);
return 0;
}