98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
}
[conn setServer: [arguments objectAtIndex: 0]];
[conn setUsername: [arguments objectAtIndex: 1]];
[conn setPassword: [arguments objectAtIndex: 2]];
[conn setResource: @"ObjXMPP"];
[conn connect];
@try {
[conn handleConnection];
} @catch (id e) {
of_log(@"%@", e);
}
}
- (void)connectionWasAuthenticated: (XMPPConnection*)conn
|
<
>
|
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
}
[conn setServer: [arguments objectAtIndex: 0]];
[conn setUsername: [arguments objectAtIndex: 1]];
[conn setPassword: [arguments objectAtIndex: 2]];
[conn setResource: @"ObjXMPP"];
@try {
[conn connect];
[conn handleConnection];
} @catch (id e) {
of_log(@"%@", e);
}
}
- (void)connectionWasAuthenticated: (XMPPConnection*)conn
|