14 lines
209 B
C
14 lines
209 B
C
#ifndef HTTPD_FDIPV4_H
|
|
#define HTTPD_FDIPV4_H
|
|
|
|
/**
|
|
* Get IP address for a FD
|
|
*
|
|
* @param fd
|
|
* @param[out] ipv4
|
|
* @return success
|
|
*/
|
|
esp_err_t fd_to_ipv4(int fd, in_addr_t *ipv4);
|
|
|
|
#endif //HTTPD_FDIPV4_H
|