1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
|
-
+
|
/*
* Copyright (c) 2011, Jonathan Schleifer <js@webkeks.org>
* Copyright (c) 2011, 2021, Jonathan Schleifer <js@nil.im>
* Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de>
*
* https://heap.zone/objxmpp/
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice is present in all copies.
|
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
|
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
|
-
+
-
-
+
-
|
/*!
* @brief Creates a new XMPPIQ with the specified type and ID.
*
* @param type The value for the stanza's type attribute
* @param ID The value for the stanza's id attribute
* @return A new autoreleased XMPPIQ
*/
+ (instancetype)IQWithType: (OFString *)type
+ (instancetype)IQWithType: (OFString *)type ID: (OFString *)ID;
ID: (OFString *)ID;
/*!
* @brief Initializes an already allocated XMPPIQ with the specified type and
* ID.
*
* @param type The value for the stanza's type attribute
* @param ID The value for the stanza's id attribute
* @return An initialized XMPPIQ
*/
- (instancetype)initWithType: (OFString *)type
- (instancetype)initWithType: (OFString *)type ID: (OFString *)ID;
ID: (OFString *)ID;
/*!
* @brief Generates a result IQ for the receiving object.
*
* @return A new autoreleased XMPPIQ
*/
- (XMPPIQ *)resultIQ;
|
72
73
74
75
76
77
78
79
80
81
82
83
|
70
71
72
73
74
75
76
77
78
79
80
|
-
+
-
|
/*!
* @brief Generates an error IQ for the receiving object.
*
* @param type An error type as defined by RFC 6120
* @param condition A defined conditions from RFC 6120
* @return A new autoreleased XMPPIQ
*/
- (XMPPIQ *)errorIQWithType: (OFString *)type
- (XMPPIQ *)errorIQWithType: (OFString *)type condition: (OFString *)condition;
condition: (OFString *)condition;
@end
OF_ASSUME_NONNULL_END
|