如何处理inet_ntop()失败?

时间:2012-03-07 14:27:33

标签: c++ getaddrinfo inet-ntop

首先,我的代码示例:

cout << "bla1" << endl;
struct addrinfo hints, *info;
int status;

memset(&hints, 0, sizeof hints);

char ip4[INET_ADDRSTRLEN];
char ip6[INET6_ADDRSTRLEN];

hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;

cout << "bla2" << endl;

status = getaddrinfo(url.c_str(), NULL, &hints, &info);

cout << "bla3" << endl;

if(!inet_ntop(AF_INET, &((const sockaddr_in *)info->ai_addr)->sin_addr , ip4, INET_ADDRSTRLEN)) {
  return ERROR_PAR;
}

cout << "bla4" << endl;

url变量包含要解析的地址(我正在使用简单的客户端/服务器DNS解析器)。如果它可以解决,一切正常,但是当网址无法解析时,我的输出只是

BLA1 bla2 bla3

上面的代码是分叉的子代,所以它不会停止整个脚本,它只是回到父进程,虽然没有错误(我正在测试返回值,在这种情况下它应该是ERROR_PAR = 1所以应该出现错误信息)。

我使用这些功能的方式有问题,或者问题必须在其他地方吗?

编辑:在任何其他函数之前检查getaddrinfo返回值非常重要。所以问题就解决了。

1 个答案:

答案 0 :(得分:0)

要正式回答这个问题,请查看手册:

  

成功时,inet_ntop()返回一个指向dst的非空指针。如果出现错误,则返回NULL,并将errno设置为指示错误。

所以你会做类似的事情:

#include <arpa/inet.h>
#include <stdio.h>                                                                                                                                                                                                 
#include <string.h>
#include <errno.h>

int main(void) {
    char *ip = "127.0.0.1";
    uint32_t src;
    inet_pton(AF_INET, ip, &src);

    char dst[INET_ADDRSTRLEN];
    if (inet_ntop(AF_INET, &src, dst, INET_ADDRSTRLEN)) {
        printf("converted value = %s \n", dst);   
        return 0;                                                                                                                                        
    } else {
        printf("inet_ntop conversion error: %s\n", strerror(errno));
        return 1;
    }
}