Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 iPhone 的应用程序中进行 AS(自治系统)查找的最佳方法是什么?
看起来 iPhone 应用程序没有 root 访问权限,所以我不能从应用程序中使用system()or调用“dig”或“whois” popen()。
system()
popen()
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
现在您可以调用该函数:
谁是();