Boost asio socket:如何获取连接的IP、端口地址?

发布于 2024-10-22 23:04:36 字数 122 浏览 2 评论 0原文

我有一个使用 boost asio 的 TCP 服务器。我已接受套接字连接。如何获取与我的服务器通信的机器的IP、端口?

顺便说一句:是否可以获取有关连接的服务器用户看到我的 server4 机器的 IP 的信息?

I have a TCP server using boost asio. I have accepted a socket connection. How to get IP, Port of machine my server is communicating with?

BTW: Is it possible to get info on what ip that connected server user sees my server4 machine?

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

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

发布评论

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

评论(4

花间憩 2024-10-29 23:04:36

你可以这样获取IP和端口:

std::string sClientIp = socket().remote_endpoint().address().to_string();
unsigned short uiClientPort = socket().remote_endpoint().port();

You can get the IP and port like this:

std::string sClientIp = socket().remote_endpoint().address().to_string();
unsigned short uiClientPort = socket().remote_endpoint().port();
海风掠过北极光 2024-10-29 23:04:36

如果您在remote_endpoint中收到错误文件描述符错误,您仍然可以参考下面的链接。

http://www.boost.org /doc/libs/1_51_0/doc/html/boost_asio/reference/basic_socket_acceptor/accept.html

“接受新连接并获取对等点的端点。”部分会对你有帮助。

您可以使用如下

tcp::acceptor::endpoint_type end_type;
acceptor.accept(*stream.rdbuf(), end_type);
std::string sClientIp = end_type.address().to_string();

still if you get Bad File Descriptor error in remote_endpoint you can refer to below link.

http://www.boost.org/doc/libs/1_51_0/doc/html/boost_asio/reference/basic_socket_acceptor/accept.html

"Accept a new connection and obtain the endpoint of the peer." part will be helpful to you.

You can use as below

tcp::acceptor::endpoint_type end_type;
acceptor.accept(*stream.rdbuf(), end_type);
std::string sClientIp = end_type.address().to_string();
携君以终年 2024-10-29 23:04:36

我无法对原始答案发表评论。我只想提一下,投票最高的答案存在一些问题:socket().remote_endpoint() 可能会抛出boost::system::system_error。所以记得处理异常,否则你的程序可能会崩溃。我花了很多时间来调试这个问题。

I cannot comment on the original answer. I just want to mention that there's some problem with the top voted answer: socket().remote_endpoint() may throw boost::system::system_error. So remember to handle the exception or your program may crash. It took me many hours to debug this problem.

单调的奢华 2024-10-29 23:04:36

http://www.boost.org /doc/libs/1_52_0/doc/html/boost_asio/reference/ip__tcp/endpoint.html

我没有这方面的经验,但看起来地址和端口成员函数应该可以解决问题

(编辑最新的增强版)

http://www.boost.org/doc/libs/1_52_0/doc/html/boost_asio/reference/ip__tcp/endpoint.html

i don't have experience in it, but it looks like address and port member functions should do the trick

(edit for latest Boost version)

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