113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
}
[conn setDomain: [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)connection: (XMPPConnection*)conn
didReceiveElement: (OFXMLElement*)element
{
of_log(@"In: %@", element);
}
|
<
|
<
<
<
<
|
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
}
[conn setDomain: [arguments objectAtIndex: 0]];
[conn setUsername: [arguments objectAtIndex: 1]];
[conn setPassword: [arguments objectAtIndex: 2]];
[conn setResource: @"ObjXMPP"];
[conn asyncConnectAndHandle];
}
- (void)connection: (XMPPConnection*)conn
didReceiveElement: (OFXMLElement*)element
{
of_log(@"In: %@", element);
}
|