[DFS] add sockaddr_storage structure in sys/socket.h

This commit is contained in:
Bernard Xiong 2015-09-25 06:55:55 +08:00
parent 730592df19
commit d1a1cbfdd7
1 changed files with 8 additions and 0 deletions

View File

@ -31,6 +31,14 @@ extern "C" {
#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 bind(int s, const struct sockaddr *name, socklen_t namelen);
int shutdown(int s, int how);