add sockaddr_in and fdset
This commit is contained in:
parent
18542336a2
commit
25ca934a9e
|
|
@ -14,5 +14,5 @@
|
|||
intfloat_readwrite.h mathematics.h rational.h rtp.h \
|
||||
rtsp.h rtspcodes.h setjmp.h winsock2.h \
|
||||
ode/ode.h collision_trimesh.h \
|
||||
netinet/tcp.h netinet/ip.h \
|
||||
netinet/tcp.h netinet/ip.h sys/socket.h \
|
||||
rfftw.h libtar.h malloc.h ucontext.h ctype.h
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
struct sockaddr_in
|
||||
{
|
||||
};
|
||||
|
||||
typedef struct fd_set {
|
||||
unsigned int fd_count; /* how many are SET? */
|
||||
SOCKET fd_array[10]; /* an array of SOCKETs */
|
||||
} fd_set;
|
||||
Loading…
Reference in New Issue