⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getname.c

📁 《Beginning linux programming》一书相应的源代码
💻 C
字号:
/*  As usual, make the appropriate includes and declare the variables.  */#include <netinet/in.h>#include <arpa/inet.h>#include <unistd.h>#include <netdb.h>#include <stdio.h>int main(int argc, char *argv[]){    char *host, **names, **addrs;    struct hostent *hostinfo;/*  Set the host in question to the argument supplied with the getname call,    or default to the user's machine.  */    if(argc == 1) {        char myname[256];        gethostname(myname, 255);        host = myname;    }    else        host = argv[1];/*  Make the call to gethostbyname and report an error if no information is found.  */    hostinfo = gethostbyname(host);    if(!hostinfo) {        fprintf(stderr, "cannot get info for host: %s\n", host);        exit(1);    }/*  Display the hostname and any aliases it may have.  */    printf("results for host %s:\n", host);    printf("Name: %s\n", hostinfo -> h_name);    printf("Aliases:");    names = hostinfo -> h_aliases;    while(*names) {        printf(" %s", *names);        names++;    }    printf("\n");/*  Warn and exit if the host in question isn't an IP host.  */    if(hostinfo -> h_addrtype != AF_INET) {        fprintf(stderr, "not an IP host!\n");        exit(1);    }/*  Otherwise, display the IP address(es).  */    addrs = hostinfo -> h_addr_list;    while(*addrs) {        printf(" %s", inet_ntoa(*(struct in_addr *)*addrs));        addrs++;    }    printf("\n");    exit(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -