socket( AF_INET, SOCK_STREAM, IPPROTO_TCP )这个返回值表示什么意义

如题,请例举返回值对应的意义,谢谢初学,不懂哪里去找资料... 如题,请例举返回值对应的意义,谢谢
初学,不懂哪里去找资料
展开
 我来答
西安阿呆
推荐于2016-04-21 · TA获得超过147个赞
知道答主
回答量:209
采纳率:0%
帮助的人:187万
展开全部
RETURN VALUE
On success, a file descriptor for the new socket is returned. On
error, -1 is returned, and errno is set appropriately.

ERRORS
EACCES Permission to create a socket of the specified type and/or pro-
tocol is denied.

EAFNOSUPPORT
The implementation does not support the specified address fam-
ily.

EINVAL Unknown protocol, or protocol family not available.

EINVAL Invalid flags in type.

EMFILE Process file table overflow.

ENFILE The system limit on the total number of open files has been
reached.

ENOBUFS or ENOMEM
Insufficient memory is available. The socket cannot be created
until sufficient resources are freed.

EPROTONOSUPPORT
The protocol type or the specified protocol is not supported
within this domain.

Other errors may be generated by the underlying protocol modules.

例子:

clientfd = socket(AF_INET, SOCK_STREAM, 0);
if (clientfd < 0) {
LOG_RECORD(LOG_ERR, "Create socket error.");
return -1;
}
ret = connect(clientfd, (struct sockaddr *)&host_addr, sizeof(host_addr));
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
幸巴达
2009-08-19 · TA获得超过1.2万个赞
知道大有可为答主
回答量:6953
采纳率:38%
帮助的人:2437万
展开全部
如果成功返回一个SOCKET,
如果失败,返回INVALID_SOCKET(-1)。可以用WSAGetLastError来获取错误号。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式