cpp connect() 函数被无限期阻塞

cpp connect() function is blocked indefinitely

#include <sys/socket.h>
#include <cstdio>
#include <stdlib.h>
#include <iostream>
#include <errno.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>
#include <unistd.h>
#define BUFSIZE 5000
#define PORT 80
using namespace std;
int main(int argc, char* argv[]){
    char buffer[BUFSIZE];
    int sockfd;
    struct sockaddr_in their_addr;
    if((sockfd = socket(PF_INET, SOCK_STREAM, 0)) == -1){
        perror("Socket generating failed");
        exit(1);
    }
    their_addr.sin_family = AF_INET;
    their_addr.sin_port = htons(PORT);
    their_addr.sin_addr.s_addr = htonl(((struct in_addr*)gethostbyname("www.google.com")->h_addr_list[0])->s_addr);
    if(connect(sockfd, (struct sockaddr*)&their_addr, sizeof(struct sockaddr)) == -1){ // stops at here!
        perror("Connection failed");
        exit(1);
    }
    close(sockfd);
    return 0;

作为gethostbyname + connect组合的测试,我写了一个简单的代码。 它通过 gethostbyname() 查询 google 的 IP 地址,连接到 google 什么也不做,然后关闭套接字。 但是,程序只是停在 connect() 函数的一行,没有任何错误,包括 perror()。 我该如何解决这个问题?

获取 s_addr,确保它是一个 ipv4 地址,然后在命令行上尝试使用命令 'ping addr'

ping 该地址

之后您可以尝试像 nmap 这样的程序,但很可能 ping 就足够了。

您的代码可能没有任何问题。您需要查看是否有代理或防火墙或任何其他干扰您的网络连接的东西。您还需要确认您正在使用 gethostbyname

获得 ipv4 地址

套接字 API 不是 C++ 的一部分,它是 posix。 gethostbyname() 已过时,请改用 getaddrinfo。阅读适当的 man page,它还包含您要查找的代码的示例...

我通过删除 htonl 解决了这个问题。我不知道为什么,也不知道将来删除它会发生什么。但这将是我最好的。