Select one of the symbols to view example projects that use it.
 
Outline
#include "lwip/netdb.h"
getnameinfo(const struct sockaddr *, socklen_t, char *, socklen_t, char *, socklen_t, int);
Files
loading...
SourceVuESP-IDF Framework and ExampleslwIPport/include/netdb.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** * @file * This file is a posix wrapper for lwip/netdb.h. *//* ... */ /* * SPDX-FileCopyrightText: 2001-2004 Swedish Institute of Computer Science * * SPDX-License-Identifier: BSD-3-Clause * * SPDX-FileContributor: 2018-2022 Espressif Systems (Shanghai) CO LTD *//* ... */ #include "lwip/netdb.h" #ifdef __cplusplus extern "C" { #endif #ifdef ESP_PLATFORM int getnameinfo(const struct sockaddr *addr, socklen_t addrlen, char *host, socklen_t hostlen, char *serv, socklen_t servlen, int flags); /* ... */ #endif #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns: