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 アプリにはルート アクセス権がないようです。そのため、アプリから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 をインポートします。
これで、その関数を呼び出すことができます:
誰が();