现在的位置: 首页 > 综合 > 正文

Windows和Linux得到本机IP地址的通用函数

2012年11月05日 ⁄ 综合 ⁄ 共 2424字 ⁄ 字号 评论关闭
文章目录

Windows和Linux得到本机IP地址的通用函数

//参数:

ipbuf :存放得到的IP地址列表的数组,实际大小由bufcount指定。

bufcount:想要得到的IP地址列表的个数。

#ifdef _WIN32

#include <winsock2.h>
#include <Ws2tcpip.h>
#pragma comment(lib,"ws2_32.lib")

#else

#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <arpa/inet.h>
#include <unistd.h>

#endif

int getselfiplist(unsigned long ipbuf[],int bufcount)
{
  int i,count=0;
#ifdef _WIN32
  char hostname[128];
  struct hostent* inaddrs;
  if(gethostname(hostname,128)==0)
  {
    inaddrs=gethostbyname(hostname);
    if(inaddrs)
    {
      count=inaddrs->h_length/sizeof(in_addr);
      if(count>bufcount)count=bufcount;
      for(i=0;i<count;i++)
      {
        ipbuf[i]=*(unsigned long*)inaddrs->h_addr_list[i];
      }
    }
  }
#else
  int sock;
  struct sockaddr_in sin;
  struct ifreq ifr;
 
  sock = socket(AF_INET, SOCK_DGRAM, 0);
  if(sock>=0)//!<0
  {
    if(bufcount>100)bufcount=100;   
    for(i=0;i<bufcount;i++)
    {
      sprintf(ifr.ifr_name,"eth%d",i);
      if(ioctl(sock,SIOCGIFADDR,&ifr)<0) break;
      ::memcpy(&sin, &ifr.ifr_addr, sizeof(sin));
      ipbuf[count++]=sin.sin_addr.s_addr;
    }
    close(sock);
  }
#endif
  return count;
}

 

发表于 2004年09月02日 7:50 PM
--------------------------------------------------------------

评论

# 回复:Windows和Linux得到本机IP地址的通用函数 2004-09-03 12:21 AM meteor135
我晕!
不就是:
#ifdef _WIN32

#include <winsock2.h>
#include <Ws2tcpip.h>
#pragma comment(lib,"ws2_32.lib")

int getselfiplist(unsigned long ipbuf[],int bufcount)
{
int i,count=0;
char hostname[128];
struct hostent* inaddrs;
if(gethostname(hostname,128)==0)
{
inaddrs=gethostbyname(hostname);
if(inaddrs)
{
count=inaddrs->h_length/sizeof(in_addr);
if(count>bufcount)count=bufcount;
for(i=0;i<count;i++)
{
ipbuf[i]=*(unsigned long*)inaddrs->h_addr_list[i];
}
}
}
return count;
}

#else

#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <arpa/inet.h>
#include <unistd.h>

int getselfiplist(unsigned long ipbuf[],int bufcount)
{
int i,count=0;
int sock;
struct sockaddr_in sin;
struct ifreq ifr;

sock = socket(AF_INET, SOCK_DGRAM, 0);
if(sock>=0)//!<0
{
if(bufcount>100)bufcount=100;
for(i=0;i<bufcount;i++)
{
sprintf(ifr.ifr_name,"eth%d",i);
if(ioctl(sock,SIOCGIFADDR,&ifr)<0) break;
::memcpy(&sin, &ifr.ifr_addr, sizeof(sin));
ipbuf[count++]=sin.sin_addr.s_addr;
}
close(sock);
}
return count;
}
#endif

除了函数接口规范一样,其他几乎没有相同的,从代码上没什么通用性可言吧!

# 回复:Windows和Linux得到本机IP地址的通用函数 2004-09-03 7:15 AM 完美废人
这跟写两个函数有什么区别……

# 回复:Windows和Linux得到本机IP地址的通用函数 2004-09-03 8:11 AM Vietor
对完美废人:

如果将函数在windows中封装为.dll在linux封装为.so对外提供联接接口不就成通用函数了吗? :-)

抱歉!评论已关闭.