10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
@property (copy) OFString *from;
@property (copy) OFString *to;
@property (copy) OFString *type;
@property (copy) OFString *ID;
+ stanzaWithName: (OFString*)name;
+ stanzaWithName: (OFString*)name
type: (OFString*)type_;
+ stanzaWithName: (OFString*)name
ID: (OFString*)ID_;
+ stanzaWithName: (OFString*)name
type: (OFString*)type_
ID: (OFString*)ID_;
+ stanzaWithElement: (OFXMLElement*)elem;
- initWithName: (OFString*)name;
- initWithName: (OFString*)name
type: (OFString*)type_;
- initWithName: (OFString*)name
ID: (OFString*)ID_;
- initWithName: (OFString*)name
type: (OFString*)type_
ID: (OFString*)ID_;
- initWithElement: (OFXMLElement*)elem;
@end
@interface XMPPIQ: XMPPStanza
{
}
+ IQWithType: (OFString*)type_
ID: (OFString*)ID_;
- initWithType: (OFString*)type_
ID: (OFString*)ID_;
@end
@interface XMPPMessage: XMPPStanza
{
}
+ message;
+ messageWithID: (OFString*)ID_;
+ messageWithType: (OFString*)type_;
+ messageWithType: (OFString*)type_
ID: (OFString*)ID_;
- init;
- initWithID: (OFString*)ID_;
- initWithType: (OFString*)type_;
- initWithType: (OFString*)type_
ID: (OFString*)ID_;
- (void)addBody: (OFString*)body;
@end
@interface XMPPPresence: XMPPStanza
{
}
+ presence;
+ presenceWithID: (OFString*)ID_;
+ presenceWithType: (OFString*)type_;
+ presenceWithType: (OFString*)type_
ID: (OFString*)ID_;
- init;
- initWithID: (OFString*)ID_;
- initWithType: (OFString*)type_;
- initWithType: (OFString*)type_
ID: (OFString*)ID_;
- (void)addShow: (OFString*)show;
- (void)addStatus: (OFString*)status;
- (void)addPriority: (int8_t)priority;
@end
|