作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在调用 getnameinfo 时遇到错误 ai_family 不支持。
1 #include <iostream>
2 #include <sys/types.h>
3 #include <unistd.h>
4 #include <sys/socket.h>
5 #include <netdb.h>
6 #include <arpa/inet.h>
7 #include <iomanip>
8 extern "C" {
9 #include "../../pg/include/errhnd.h"
10 }
11
12 using namespace std;
13
14
15 int main(int argc, char** argv)
16 {
17 if (argc != 2)
18 err_quit("Usage: %s <ip address>", argv[0]);
19
20 struct sockaddr_in sa;
21 if (inet_pton(AF_INET, argv[1], &sa) <= 0)
22 err_sys("inet_pton error");
23
24 char hostname[1000], servname[1000];
25
26 cout << hex << (unsigned int)sa.sin_addr.s_addr << endl;
27
28 sa.sin_port = htons(80);
29
30 int x;
31 if ((x=getnameinfo((struct sockaddr*)&(sa.sin_addr),
32 16, hostname, 1000, servname, 1000, NI_NAMEREQD)) != 0) {
33 err_ret("getnameinfo error");
34 cout << gai_strerror(x) << endl;
35 }
36
37 cout << hostname << " " << servname << endl;
38
39 return 0;
40 }
最佳答案
您的问题出在对 inet_pton
的调用上。当 AF_INET
是传递的地址族时,dst
指针必须是指向 struct in_addr
的指针,而不是 struct sockaddr_in
.
将第 21 行更改为:
if (inet_pton(AF_INET, argv[1], &sa.sin_addr) <= 0)
在第23行插入一行:
sa.sin_family = AF_INET;
将第 31-32 行更改为:
if ((x=getnameinfo((struct sockaddr*)&sa, sizeof sa,
hostname, sizeof hostname, servname, sizeof servname, NI_NAMEREQD)) != 0) {
那么它应该可以工作了。
关于c++ - 如何让这个 getnameinfo 代码工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1520001/
我是一名优秀的程序员,十分优秀!