チャットアプリを開発しています。
しかし、今はGoogleのポート番号しか知らないので、Googleだけでチャットが可能です。
xmppClient = [[XMPPClient alloc] init];
[xmppClient addDelegate:self];
// Replace me with the proper domain and port.
// The example below is setup for a typical google talk account.
[xmppClient setDomain:@"talk.google.com"];
[xmppClient setPort:5222];
ご覧のとおり、Google は 5222 をポート番号として設定しています。
同様に、yahoo、windows メッセンジャー、およびその他の人気のあるサイトのポート番号を設定したいのですが、これらすべてを取得するにはどうすればよいですか?
(それはそのようなものですか - 「XMPPはGoogleのものに固有のものです」? ? )