作者: falcon 发表日期: 2006-09-27 15:27
复制链接
前些天由于项目需要,自己整了一个比较全面的获取IP地址的函数:
可以获取本地的IP地址,也可以根据域名获取IP地址,感觉比较有用特此奉献上,呵呵。
下面是源代码
Code:
[Ctrl+A Select All]
下面是一个测试的代码
test_GetIp.c
Code:
[Ctrl+A Select All]
具体使用演示
引文:
$./test_GetIp xxxy.lzu.edu.cn --这里是根据域名转换为IP地址
domain name or ip address : xxxy.lzu.edu.cn
current ip address: 202.201.0.237
$ ./test_GetIp 219.246.79.7 --输入地址返回地址
domain name or ip address : 219.246.79.7
current ip address: 219.246.79.7
$ ./test_GetIp localhost --获取本地IP地址
domain name or ip address : localhost
current ip address: 219.246.79.4