gpt4 book ai didi

linux - 在 Linux 下确定现有套接字句柄的类型

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:39:12 25 4
gpt4 key购买 nike

仅给定一个现有/打开的套接字句柄,如何确定该套接字是否是 Linux 下的面向连接的套接字?我正在 Windows 下搜索类似 WSAPROTOCOL_INFO 的内容,我可以使用 getsockopt 检索它。

提前致谢,克里斯托夫

最佳答案

int sock_type;
socklen_t sock_type_length = sizeof(sock_type);
getsockopt(socket, SOL_SOCKET, SO_TYPE, &sock_type, &sock_type_length);

if (sock_type == SOCK_STREAM) {
// it's TCP or SCTP - both of which are connection oriented
} else if (sock_type == SOCK_DGRAM) {
// it's UDP - not connection oriented
}

我想这有点简单,因为可以有其他协议(protocol)可以是流或数据报,但这段代码几乎总是你想要的。

关于linux - 在 Linux 下确定现有套接字句柄的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18570724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com