请教怎么include

请问如何include<sys/socket.h>
可以直接include   sys/socket.h     netinet/in.h   arpa/inet.h吗?
还是这三个文件要另外下载?

------解决方案--------------------
This is Unix/Linux code (sys/socket.h). You can not use that in Windows. You must include the Windows socket header instead, and possibly modify the rest of the program to call Windows socket API 's instead of Unix socket API 's.
------解决方案--------------------
#include <winsock2.h>

#progma lib( "ws2_32.lib ");