Advertisement
Guest User

GetDevIPMac.cc

a guest
Nov 22nd, 2011
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.84 KB | None | 0 0
  1. #include <sys/ioctl.h>
  2. #include <net/if.h>
  3. #include <sys/socket.h>
  4. #include <sys/types.h>
  5. #include <cstdio>
  6. #include <netinet/in.h>
  7. #include <cerrno>
  8. #include <arpa/inet.h>
  9. #include <net/if_arp.h>
  10.  
  11. int main(int argc, char *argv[])
  12. {
  13.     struct ifreq *ifr, *ifend;
  14.     struct ifconf ifc;
  15.     struct ifreq ifs[16];
  16.     int sockfd;
  17.     sockfd = socket(AF_INET, SOCK_DGRAM, 0);
  18.     ifc.ifc_len = sizeof(ifs);
  19.     ifc.ifc_req = ifs;
  20.     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
  21.         fprintf(stderr, "[Dev error] %s \n", strerror(errno) );
  22.     } else {
  23.         ifend = ifs + (ifc.ifc_len / sizeof(struct ifreq));
  24.         for (ifr = ifc.ifc_req; ifr < ifend; ifr++) {
  25.             if (ifr->ifr_addr.sa_family == AF_INET) {
  26.                 printf("[dev]%s\n", ifr->ifr_name);
  27.  
  28.                 strncpy(ifr->ifr_name, "eth0", sizeof(ifr->ifr_name));
  29.  
  30.                 if(ioctl(sockfd,SIOCGIFADDR,&ifr)<0)
  31.                     fprintf(stderr, "[IP error] %s \n", strerror(errno) );
  32. //                  perror("ioctl(SIOCGIFADDR)");
  33.                 else{
  34.                     struct sockaddr *address = &(ifr->ifr_addr);
  35.                     struct sockaddr_in *address_in = (struct sockaddr_in *) &address;
  36.                     printf("[IP]%s\n", inet_ntoa(address_in->sin_addr));
  37.                 }
  38.  
  39.  
  40.                 if(ioctl (sockfd, SIOCGIFNETMASK, &ifr) <0)
  41.                     fprintf(stderr, "[Netmask error] %s \n", strerror(errno) );
  42.                 else{
  43.                     struct sockaddr *address = &(ifr->ifr_netmask);
  44.                     struct sockaddr_in *address_in = (struct sockaddr_in *) &address;
  45.                     printf("[NetMask]%s\n", inet_ntoa(address_in->sin_addr));
  46.                 }
  47.  
  48.                 ifr->ifr_hwaddr.sa_family = ARPHRD_ETHER;
  49.                 if (ioctl (sockfd, SIOCGIFHWADDR, &ifr) < 0)
  50.                     fprintf(stderr, "[MAC error] %s \n", strerror(errno) );
  51.                 else{
  52.                     unsigned char *mac = (unsigned char *) ifr->ifr_hwaddr.sa_data;
  53.                     for(int i=0; i<6; i++){
  54.                         printf("%02X-",(int)mac[i]);
  55.                     }
  56.                 }
  57.  
  58.                 printf("\n\n");
  59. //              emit ifDetected(QString(ifr->ifr_name),
  60.             }
  61.         }
  62.     }
  63.     close(sockfd);
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement