ZBLOG

linux getaddrinfo example

The getaddrinfo function in Linux is used to resolve hostnames and service names into network addresses. It provides a way to obtain information about an address, allowing you to create socket connections based on domain names or IP addresses.

Here’s a simple example that demonstrates how to use getaddrinfo in C:

Example: Resolving a Hostname

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <arpa/inet.h>

int main() {
    struct addrinfo hints, *res;
    int status;
    
    // Set up the hints structure
    memset(&hints, 0, sizeof(hints));
    hints.ai_family = AF_UNSPEC; // AF_INET or AF_INET6 to force version
    hints.ai_socktype = SOCK_STREAM; // TCP stream sockets

    // Resolve the hostname "www.example.com" using port "80"
    if ((status = getaddrinfo("www.example.com", "80", &hints, &res)) != 0) {
        fprintf(stderr, "getaddrinfo error: %s\n", gai_strerror(status));
        return 1;
    }

    // Loop through all results and connect to the first we can
    for (struct addrinfo *p = res; p != NULL; p = p->ai_next) {
        void *addr;
        char *ipver;

        // Get the pointer to the address itself,
        // different fields in IPv4 and IPv6:
        if (p->ai_family == AF_INET) { // IPv4
            struct sockaddr_in *ipv4 = (struct sockaddr_in *)p->ai_addr;
            addr = &(ipv4->sin_addr);
            ipver = "IPv4";
        } else { // IPv6
            struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)p->ai_addr;
            addr = &(ipv6->sin6_addr);
            ipver = "IPv6";
        }

        // Convert the IP to a string and print it:
        char ipstr[INET6_ADDRSTRLEN];
        inet_ntop(p->ai_family, addr, ipstr, sizeof(ipstr));
        printf("Detected %s: %s\n", ipver, ipstr);
        
        // Here you would typically create a socket and connect:
        /*
         int sockfd = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
         if (sockfd == -1) {
             perror("socket");
             continue; 
         }
         */
        
        break; // For this example just take the first result.
    }

    freeaddrinfo(res); // Free the linked list allocated by getaddrinfo

    return 0;
}

Explanation:

  1. Headers: The necessary headers are included at the beginning of your code.
  2. Hints Structure: We initialize a struct addrinfo called hints, where we specify our requirements:
    • ai_family: We set this to AF_UNSPEC, meaning we want both IPv4 and IPv6 addresses.
    • ai_socktype: We set this to SOCK_STREAM for TCP sockets.
  3. Call getaddrinfo: This function is called with parameters including the hostname ("www.example.com"), service ("80"), our hints structure, and a pointer for storing results (res). If there’s an error during resolution, it prints an error message.
  4. Loop Through Results: We iterate through each entry returned in the linked list pointed to by res. Depending on whether it’s an IPv4 or IPv6 address, we extract and print its value.
  5. Clean Up: Finally, we free any memory allocated by getaddrinfo.

Compilation

To compile this program:

gcc -o getaddrinfo_example getaddrinfo_example.c

Then run it:

./getaddrinfo_example

This will output the detected IP addresses associated with "www.example.com" along with their types (IPv4 or IPv6).


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:http://sdn.0voice.com/?id=7906

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?