例如(大多数函数都是这样设置的)socket/bind.c的源代码是: 20 #include <sys/socket.h> 22 /* Give the socket FD the local address ADDR (which is LEN bytes long). */ 24 __bind (fd,
在Linux中,要创建套接字,需要包含sys/socket.h头文件并使用socket()函数。头文件位于/usr/include/sys/socket.h。extern int socket (int __domain, int __type, int __protocol) __THROW;谢谢。