winSockets编程(二)socket函数
2021-05-05 21:26
标签:失败 nbsp 函数 初始化 style color 种类 sock 套接字 初始化DLL之后,接着创建套接字,通过socket()和WSASocket()函数实现此功能。 创建成功后,返回一个套接字句柄,调用失败则返回INVALID_SOCKET。 winSockets编程(二)socket函数 标签:失败 nbsp 函数 初始化 style color 种类 sock 套接字 原文地址:http://www.cnblogs.com/tinaluo/p/7677002.htmlSOCKET socket(
int af,
int type,
int protocol
);
#代码示例#
SOCKET s=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
if(INVALID_SOCKET==s)
{
//失败;
}
文章标题:winSockets编程(二)socket函数
文章链接:http://soscw.com/index.php/essay/82901.html