1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 
5 #ifndef _AOS_HTTPC_H_
6 #define _AOS_HTTPC_H_
7 
8 #include "lwip/sockets.h"
9 
10 struct hostent *aos_httpc_get_host_by_name(const char *name);
11 
12 int aos_httpc_socket_connect(uintptr_t fd, const struct sockaddr *name, socklen_t namelen);
13 
14 #endif /* _AOS_HTTPC_H_ */
15 
16