我观察到这是因为端口。端口是 C++ 字符串。当我对端口号进行硬编码时说“4091”,我没有看到这个问题。有什么建议么?
int sockfd;
struct addrinfo hints, *servinfo, *p;
int rv;
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM;
hints.ai_flags = AI_PASSIVE;
cout << "port: " << port << endl;
const char * por = port.c_str();
if ((rv = getaddrinfo(NULL, por, &hints, &servinfo)) != 0) {
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(rv));
}
最佳答案
这可能看起来绝对愚蠢,但这就是我修复它的方式。
int pp = atoi(port.c_str());
char buffer[50];
sprintf( buffer, "%d", pp );
if ((rv = getaddrinfo(NULL, buffer, &hints, &servinfo)) != 0) {
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(rv));
}
编辑:实际问题是我正在从文件中读取端口信息。当我使用 getline() 时,无论出于何种原因,它都没有在末尾删除换行符。不再需要上述修复(如果您称之为修复)。
关于c++ - getaddrinfo 失败并出现错误 : Servname not supported for ai_socktype in C++,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10291923/