socket函数原型
时间: 2023-07-23 07:17:18 浏览: 89
socket函数参考
socket函数的原型如下:
```c
#include <sys/types.h>
#include <sys/socket.h>
int socket(int domain, int type, int protocol);
```
其中,`domain`参数指定协议族,`type`参数指定套接字类型,`protocol`参数指定协议。函数返回一个文件描述符,用于后续的套接字操作。
阅读全文