[DFS] add sockaddr_storage structure in sys/socket.h
This commit is contained in:
parent
730592df19
commit
d1a1cbfdd7
|
@ -31,6 +31,14 @@ extern "C" {
|
||||||
|
|
||||||
#include <lwip/sockets.h>
|
#include <lwip/sockets.h>
|
||||||
|
|
||||||
|
typedef uint16_t sa_family_t;
|
||||||
|
|
||||||
|
struct sockaddr_storage
|
||||||
|
{
|
||||||
|
sa_family_t ss_family; /* Address family */
|
||||||
|
char ss_data[14]; /* 14-bytes of address data */
|
||||||
|
};
|
||||||
|
|
||||||
int accept(int s, struct sockaddr *addr, socklen_t *addrlen);
|
int accept(int s, struct sockaddr *addr, socklen_t *addrlen);
|
||||||
int bind(int s, const struct sockaddr *name, socklen_t namelen);
|
int bind(int s, const struct sockaddr *name, socklen_t namelen);
|
||||||
int shutdown(int s, int how);
|
int shutdown(int s, int how);
|
||||||
|
|
Loading…
Reference in New Issue