ObjXMPP  Diff

Differences From Artifact [00843fd022]:

To Artifact [1d590d00a0]:


93
94
95
96
97
98
99

100


101

102
	[conn setServer: [arguments objectAtIndex: 0]];
	[conn setUsername: [arguments objectAtIndex: 1]];
	[conn setPassword: [arguments objectAtIndex: 2]];
	[conn setResource: @"ObjXMPP"];
	[conn setUseTLS: NO];

	[conn connect];

	[conn handleConnection];


}

@end







>
|
>
>
|
>

93
94
95
96
97
98
99
100
101
102
103
104
105
106
	[conn setServer: [arguments objectAtIndex: 0]];
	[conn setUsername: [arguments objectAtIndex: 1]];
	[conn setPassword: [arguments objectAtIndex: 2]];
	[conn setResource: @"ObjXMPP"];
	[conn setUseTLS: NO];

	[conn connect];
	@try {
		[conn handleConnection];
	} @catch (id e) {
		of_log(@"%@", e);
	}
}
@end