zoukankan      html  css  js  c++  java
  • 获取IP(windows和linux)

    #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=*(unsigned long*)inaddrs->h_addr_list;
    }
    }
    }
    #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;
    }

    #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=*(unsigned long*)inaddrs->h_addr_list;
    }
    }
    }
    #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;
    }

  • 相关阅读:
    ReentrantReadWriteLock读写锁的使用
    Exchanger的使用
    CyclicBarrier的用法
    Semaphore的使用
    CountDownLatch的使用
    BlockingQueue的使用
    对字符串操作的各种笔试题
    struts2请求过程源码分析
    shell语法使用
    hibernate调用mysql存储过程
  • 原文地址:https://www.cnblogs.com/yunsicai/p/3659278.html
Copyright © 2011-2022 走看看