Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1183363
  • 博文数量: 221
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 2139
  • 用 户 组: 普通用户
  • 注册时间: 2012-11-27 19:53
个人简介

JustForFun

文章分类

全部博文(221)

文章存档

2024年(6)

2023年(8)

2022年(2)

2021年(2)

2020年(29)

2019年(11)

2018年(23)

2017年(41)

2016年(76)

2015年(23)

我的朋友
最近访客

分类: LINUX

2017-07-14 17:46:19

原文
#include
#include
#include
#include
#include
#include
#include
#include
#include

int main(int argc, char** argv)
{
    assert(argc == 2);
    const char* hostname = argv[1];
    struct hostent* host;

    host = gethostbyname(hostname);
    if (NULL == host)
    {
        perror("can not get host by hostname");
        exit(EXIT_FAILURE);
    }

    printf("host ip=%s\n", inet_ntoa(*((struct in_addr*)host->h_addr)));
    return EXIT_SUCCESS;
}

本人文峰聊书斋在centos6平台验证
[root@www ble_mesh]# ./a.out
host ip=14.215.177.38
[root@www ble_mesh]#
文峰聊书斋另外加入:
#define SOCKADDR_IN(addr, ip, port) do{ \
                                memset(&(addr), 0, sizeof(addr)); \
                                (addr).sin_family      = AF_INET;     \
                                (addr).sin_addr.s_addr = inet_addr(ip);   \
                                (addr).sin_port        = htons(port);     \
                                if ((addr).sin_addr.s_addr == INADDR_NONE){    \
                                    struct hostent* pHost = gethostbyname(ip);  \
                                    if (pHost == NULL){return ;}  \
                                    memcpy(&(addr).sin_addr, pHost->h_addr_list[0], pHost->h_length);} \
                                }while(0)

    struct sockaddr_in servaddr;
    SOCKADDR_IN(servaddr,"", 5000);
    //SOCKADDR_IN(servaddr,"192.168.0.11", 5000);
    printf("baidu%s\n",inet_ntoa(servaddr.sin_addr));
阅读(1357) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~