在iPhone应用程序中进行AS(自治系统)查找的最佳方法?

时间:2013-02-25 18:43:42

标签: iphone ios

在iPhone的应用程序中进行AS(自治系统)查找的最佳方法是什么?

看起来iPhone应用没有root权限,因此我无法使用system()popen()从应用中调用“dig”或“whois”。

1 个答案:

答案 0 :(得分:0)

1)创建一个头文件“whois.h”,其中包含以下内容:

extern int whois(int argc,char * argv []);

2)将函数名称从main更改为任何名称:

INT main(int argc,char * argv []) {

为:

INT whois(int argc,char * argv []) {

3)在object-c .m文件中,导入whois.h

现在你可以调用该函数:

的whois();