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.
iOSのホスト名からIPアドレスを解決する必要があります。これはNSHostを使用するのは簡単ですが、NSHostの解決機能はOSXでのみ機能するようです。
前もって感謝します。
このような:
struct hostent *host_entry = gethostbyname("stackoverflow.com"); char *buff; buff = inet_ntoa(*((struct in_addr *)host_entry->h_addr_list[0]));
buff変数にIPアドレスが含まれるようになりました。