码迷,mamicode.com
首页 > 编程语言 > 详细

linux c/c++ IP字符串转换成可比较大小的数字

时间:2014-12-17 16:36:01      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   io   color   sp   on   div   art   

IP字符串转换成可比较大小的数字,具体代码如下所示: 本文由www.169it.com搜集整理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "stdio.h"
#include "arpa/inet.h"
#include <string>
using namespace std;
// linux c/c++ IP字符串转换成可比较大小的数字
// g++ -o test_ip_unsigned test_ip_unsigned.cpp
int main( int argc, char *argv[])
{      
     string ip= "192.168.1.123" ;
     unsigned int x=ntohl(inet_addr(ip.c_str()));
     unsigned int y=(unsigned int )192*256*256*256+168*256*256+256+123; 
     printf ( "x=[%u] ip un[%u]\r\n" ,x,y);
     return 1;
}


文章来源:linux c/c++ IP字符串转换成可比较大小的数字


linux c/c++ IP字符串转换成可比较大小的数字

标签:style   http   ar   io   color   sp   on   div   art   

原文地址:http://my.oschina.net/u/1766067/blog/357223

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!