2024-10-08 21:27:11 +02:00
|
|
|
/*
|
2025-01-07 12:17:35 +01:00
|
|
|
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
2024-10-08 21:27:11 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "lwip/sockets.h"
|
|
|
|
|
#include "netdb_macros.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_IDF_TARGET_LINUX
|
|
|
|
|
// namespace with esp_ on linux to avoid duplication of symbols
|
|
|
|
|
#define gai_strerror esp_gai_strerror
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/**
|
2025-01-07 12:17:35 +01:00
|
|
|
* @brief Returns a string representing of `getaddrinfo()` error code.
|
2024-10-08 21:27:11 +02:00
|
|
|
*
|
2025-01-07 12:17:35 +01:00
|
|
|
* @param[in] errcode Error code returned by `getaddrinfo()`.
|
2024-10-08 21:27:11 +02:00
|
|
|
*
|
2025-01-07 12:17:35 +01:00
|
|
|
* @return A pointer to a string containing the error code, for example "EAI_NONAME"
|
|
|
|
|
* for EAI_NONAME error type.
|
2024-10-08 21:27:11 +02:00
|
|
|
*/
|
2025-01-07 12:17:35 +01:00
|
|
|
const char *gai_strerror(int errcode);
|
2024-10-08 21:27:11 +02:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|