70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
-
+
-
+
|
[_discoNodes release];
[super dealloc];
}
- (OFDictionary*)discoNodes;
{
OF_GETTER(_discoNodes, YES);
OF_GETTER(_discoNodes, true)
}
- (void)addDiscoNode: (XMPPDiscoNode*)node
{
[_discoNodes setObject: node
forKey: [node node]];
}
- (OFString*)capsNode
{
OF_GETTER(_capsNode, YES);
OF_GETTER(_capsNode, true)
}
- (OFString*)capsHash
{
OFEnumerator *enumerator;
XMPPDiscoIdentity *identity;
OFString *feature;
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
-
+
-
+
-
+
|
- (void)connection: (XMPPConnection*)connection
wasBoundToJID: (XMPPJID*)JID
{
_JID = [JID copy];
}
- (BOOL)connection: (XMPPConnection*)connection
- (bool)connection: (XMPPConnection*)connection
didReceiveIQ: (XMPPIQ*)IQ
{
if (![[IQ to] isEqual: _JID])
return NO;
return false;
OFXMLElement *query = [IQ elementForName: @"query"
namespace: XMPP_NS_DISCO_ITEMS];
if (query != nil) {
OFString *node =
[[query attributeForName: @"node"] stringValue];
if (node == nil)
return [self XMPP_handleItemsIQ: IQ
connection: connection];
XMPPDiscoNode *responder = [_discoNodes objectForKey: node];
if (responder != nil)
return [responder XMPP_handleItemsIQ: IQ
connection: connection];
return NO;
return false;
}
query = [IQ elementForName: @"query"
namespace: XMPP_NS_DISCO_INFO];
if (query != nil) {
OFString *node =
|
163
164
165
166
167
168
169
170
171
172
173
174
175
|
163
164
165
166
167
168
169
170
171
172
173
174
175
|
-
+
-
+
|
connection: connection];
XMPPDiscoNode *responder = [_discoNodes objectForKey: node];
if (responder != nil)
return [responder XMPP_handleInfoIQ: IQ
connection: connection];
return NO;
return false;
}
return NO;
return false;
}
@end
|