找回密码
 用户注册

QQ登录

只需一步,快速开始

查看: 2573|回复: 0

在ACE中如何获得本地的ip地址?

[复制链接]
发表于 2008-4-29 09:51:58 | 显示全部楼层 |阅读模式
如何获得本机的ip地址!.如:192.168.5.45.
一个主机可以有多个IP
ACE::get_ip_interfaces可以得到IP数量和ACE_INET_Addr类型的指针数组,数组大小就是IP数目
有了ACE_INET_Addr就能获得IP信息,下面是个输出到控制台窗口的例子

==============================================
#include "ace/INET_Addr.h"
void print_all_interfaces()
{
ACE_INET_Addr *the_addr_array;
size_t count = 0;
int rc = ACE::get_ip_interfaces (count , the_addr_array);
char address[30];
int i = 0;
while (i < count)
{
  (the_addr_array+i)->addr_to_string(address, sizeof(address));
  printf("%s\n", address);
  i++;
}
delete [] the_addr_array;

system("pause");
}
您需要登录后才可以回帖 登录 | 用户注册

本版积分规则

Archiver|手机版|小黑屋|ACE Developer ( 京ICP备06055248号 )

GMT+8, 2024-12-23 13:50 , Processed in 0.027272 second(s), 6 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表