connection.setRemoteIP(ip);
connection.setRemotePort(port);
connection.setConnectionType(messenger.getConnection()
.getConnectionType());
session = new MsnSession(this, new InetSocketAddress(ip, port));
session.addSessionListener(new SBSessionListener());
String closeOnIdleProp = System.getProperty(CLOSE_ON_IDLE_PROP);
if(closeOnIdleProp != null && !Boolean.parseBoolean(closeOnIdleProp))
closeOnIdle = false;