c++ gethostbyaddr 与用户输入

发布于 2024-09-26 14:09:31 字数 264 浏览 1 评论 0原文

我正在为 telnet 客户端编写 C++ 代码。我在从用户输入获取主机地址时遇到问题。

struct in_addr peers;

cin>>peers;

peerserver = gethostbyaddr((const char*)peers,4,AF_INET);

if (peerserver == NULL)
    exit(0);

我是 C++ 新手,谁能建议一种更好的方法来通过用户输入获取主机地址。提前致谢。

I am writing c++ code for a telnet client. I am having problems getting the host address from the user input.

struct in_addr peers;

cin>>peers;

peerserver = gethostbyaddr((const char*)peers,4,AF_INET);

if (peerserver == NULL)
    exit(0);

I am new to c++, can anyone suggest a better way of getting the host addr with user input. Thanks in advance.

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

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

发布评论

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

评论(1

剑心龙吟 2024-10-03 14:09:31

您要查找的是 gethostbyname,而不是 gethostbyaddrgethostbyaddr 假定您已经获得了 IP 地址。

char peers[256];
cin >> peers;
struct hostent *ent = gethostbyname(peers);
printf("%04x\n", *(int *)(ent->h_addr));

What you're looking for is gethostbyname, not gethostbyaddr. gethostbyaddr assumes that you've already got the IP address.

char peers[256];
cin >> peers;
struct hostent *ent = gethostbyname(peers);
printf("%04x\n", *(int *)(ent->h_addr));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文