在 Erlang 中确定传入 TCP/IP 连接的 IP 地址和端口

发布于 2024-08-01 13:49:35 字数 205 浏览 5 评论 0原文

我想获取传入 TCP/IP 连接的 IP 地址和端口号。 不幸的是,gen_tcpacceptrecv 函数仅返回一个套接字,而 gen_udprecv 函数还返回地址信息。 有没有一种简单的方法来收集属于 Erlang 中套接字的地址信息?

I would like to fetch the IP address and port number of an incoming TCP/IP connection. Unfortunately gen_tcp's accept and recv functions only give back a socket, while gen_udp's recv function also gives back the address information. Is there a straightforward way to collect address information belonging to a socket in Erlang?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌能量女王 2024-08-08 13:49:35

您需要inet/peername 1。 来自 Erlang inet 文档

对等点名称(Socket) -> {好的,{地址,端口}} | {错误,posix()}

类型:

套接字 = 套接字()
地址 = ip_address()
端口 = int()

返回连接另一端的地址和端口。

You need inet/peername 1. From the Erlang inet docs:

peername(Socket) -> {ok, {Address, Port}} | {error, posix()}

Types:

Socket = socket()
Address = ip_address()
Port = int()

Returns the address and port for the other end of a connection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文