79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
- (void)XMPP_lookup;
- (void)XMPP_addEntry: (XMPPSRVEntry*)item;
@end
@interface XMPPSRVEnumerator: OFEnumerator
{
OFList *list;
of_list_object_t *listIter;
OFList *subListCopy;
bool done;
}
- initWithList: (OFList*)list;
@end
|
|
|
|
|
|
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
- (void)XMPP_lookup;
- (void)XMPP_addEntry: (XMPPSRVEntry*)item;
@end
@interface XMPPSRVEnumerator: OFEnumerator
{
OFList *_list;
of_list_object_t *_listIter;
OFList *_subListCopy;
bool _done;
}
- initWithList: (OFList*)list;
@end
|