ImpsSession session = mConnection.getSession();
try {
if (session.getCirHttpAddress() != null) {
mCirUrl = new URL(session.getCirHttpAddress());
}
} catch (MalformedURLException e) {
// Ignore
}
mServerPollMin = session.getServerPollMin() * 1000;
mPollingTask = new Thread(this, "HTTPCIRChannel");
mPollingTask.setDaemon(true);
mPollingTask.start();