根据域名找到IP地址 getipbyhostname.c

* getipbyhostname.c

cpp 复制代码
#include <netdb.h>  /* gethostbyname */
#include <time.h>   /* time_t, localtime */
#include <errno.h>  /* errno */
#include <netinet/in.h> /* struct in_addr */
#include <arpa/inet.h>  /* inet_ntoa */
#include <string.h> /* strncpy */
#include <stdarg.h> /* va_start, va_end */
#include <stdio.h>

#define E_FAIL -1
#define E_OK 0

#define _FL_ __FILE__,__LINE__

#define E_MESSAGE 10000
#define E_ALLOC  10300
#define E_SOCKFD_SEND  10359
#define E_SOCKFD_RECV  10360
#define E_OSCALL    10201  /* 系统函数(%s)调用出错 */
#define E_FUNCALL   10202  /* 平台函数(%s)调用出错 */

#ifndef pid_t
typedef int pid_t;
#endif
extern  pid_t getpid(void);

int bclerrlog(int appcode, char *file, long line, const char *fmt, ...)
{
  time_t now_time;
  struct tm *info;
  char dt_buf[64];
  char appmsg[512];
  va_list ap;

  va_start(ap, fmt);
  /* bclerreg(appcode, file, line, fmt, ap); */
  vsnprintf(appmsg, 512, fmt, ap);

  time( &now_time );
  info = localtime( &now_time );
  strftime(dt_buf, 80, "%Y-%m-%d %H:%M:%S", info);
  fprintf(stderr, "---- %s ----\n", dt_buf);

  fprintf(stderr, "PID: %d\tFile: %s\tLine: %ld\n", getpid(), file, line);
  fprintf(stderr, "App Error: %d - %s\n", appcode, appmsg);
  fprintf(stderr, "System Error: %d - %s\n", errno, strerror(errno));
  va_end(ap);
}

#if 0
typedef union {
  unsigned char a[4];
  unsigned int m;
} IPAddr_t;
#endif

int main(int argc, char *argv[])
{
  char host_name[256];
  struct hostent *host_entry;
  char *IPbuffer;
  struct in_addr addr;

  /* strncpy(host_name, "p3-sign.douyinpic.com", 256); */
  if (argc < 2) {
    fprintf(stdout, "Usage: %s xx.xx.com", argv[0]);
    return E_OK;
  }
  strncpy(host_name, argv[1], 256);
  printf("Hostname: [%s]\n", host_name);

  /* To retrieve host information */
  host_entry = gethostbyname(host_name);
  if (host_entry == NULL) {
    bclerrlog(E_OSCALL, _FL_, "gethostbyname()");
    return E_FAIL;
  }
  /* To convert an Internet network address into ASCII string */
  for (int i = 0; i < host_entry->h_length; i++) {
    IPbuffer = inet_ntoa(*((struct in_addr*)host_entry->h_addr_list[i]));
    memcpy(&addr, host_entry->h_addr_list[i], sizeof(struct in_addr));
    printf("Host IP#%d: %s\t%08x\n", i, IPbuffer, addr.s_addr);
  }

  return E_OK;
}

$ cc -g getipbyhostname.c -o getipbyhostname

$ ./getipbyhostname p3-sign.douyinpic.com

Hostname: [p3-sign.douyinpic.com]

Host IP#0: 221.231.92.240 f05ce7dd

Host IP#1: 180.101.197.251 fbc565b4

Host IP#2: 116.207.144.248 f890cf74

Host IP#3: 58.215.47.228 e42fd73a

相关推荐
Learn-Share_HY15 分钟前
[Linux]如何設置靜態IP位址?
linux·运维·tcp/ip·ubuntu·static ip
我命由我1234525 分钟前
嵌入式单片机开发 - HAL 库 STM32F1 外设的时钟使能(时钟使能宏、时钟禁用宏)
c语言·c++·stm32·单片机·嵌入式硬件·嵌入式·嵌入式软件
chian-ocean1 小时前
零基础入门:用C++从零实现TCP Socket网络小工具
网络·c++·tcp/ip
apihz1 小时前
域名WHOIS信息查询免费API使用指南
android·开发语言·数据库·网络协议·tcp/ip
guts°2 小时前
10-ACL技术
网络·网络协议
群联云防护小杜3 小时前
深度隐匿源IP:高防+群联AI云防护防绕过实战
运维·服务器·前端·网络·人工智能·网络协议·tcp/ip
Y4090013 小时前
C语言转Java语言,相同与相异之处
java·c语言·开发语言·笔记
笑衬人心。3 小时前
TCP 拥塞控制算法 —— 慢启动(Slow Start)笔记
笔记·tcp/ip·php
2301_780789667 小时前
UDP和TCP的主要区别是什么
服务器·网络协议·web安全·网络安全·udp
棐木11 小时前
【C语言】动态内存管理
c语言·free·malloc·realloc·calloc·动态内存